我创建了一个Outlook加载项,它在创建约会时会获取某个约会模板。
创建新约会时,指定模板显示在
mail.Display();
但随后会打开另一个空模板。
如何改变这种行为?
void Inspectors_GetAppointmentTemplate(Outlook.Inspector inspector)
{
Outlook.AppointmentItem mail =
Application.CreateItemFromTemplate(@"c:\temp\test.oft") as
Outlook.AppointmentItem;
if (mail.EntryID == null)
{
mail.Display();
}
}