我正在为outlook开发一个自定义的Appointment FormRegion加载项。
我该怎么做?
答案 0 :(得分:0)
没关系,想通了。
success: (response) => {
this.props.callback(); // This will work too
},
编辑:更好......
using OutlookTools = Microsoft.Office.Tools.Outlook;
using Outlook = Microsoft.Office.Interop.Outlook;
//....class definition, etc
private void CustomFormRegion_FormRegionShowing(object sender, System.EventArgs e) {
OutlookTools.FormRegionControl control = (OutlookTools.FormRegionControl)sender;
Outlook.AppointmentItem item = (Outlook.AppointmentItem)control.OutlookItem;
}