日期:2014-05-20 浏览次数:20732 次
namespace OutlookAddInTest
{
public partial class LabelForm : Form
{
private RibbonTest ribbon = null;
public LabelForm() {
InitializeComponent();
}
public LabelForm(RibbonTest ribbon)
{
InitializeComponent();
this.ribbon = ribbon;
}
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
}
// Occurs before the form region is displayed.
// Use this.OutlookItem to get a reference to the current Outlook item.
// Use this.OutlookFormRegion to get a reference to the form region.
private void LabelForm_FormRegionShowing(object sender, System.EventArgs e)
{
}
// Occurs when the form region is closed.
// Use this.OutlookItem to get a reference to the current Outlook item.
// Use this.OutlookFormRegion to get a reference to the form region.
private void LabelForm_FormRegionClosed(object sender, System.EventArgs e)
{
}
}
}