我有一个Outlook AddIn,每次用户发送消息时都会显示一个对话框。
我打开对话框并获取有关 onItemSend 事件的消息信息。这是按预期工作:一旦发送消息,它将打开一个对话框,其中包含一些信息,如收件人,主题等。
问题是当用户保持Outlook打开并从其他来源(例如手机或平板电脑)发送消息时。用户发送邮件后,打开的Outlook将显示该对话框,即使该对话框未从该实例发送。
例如,有一个用户在他的家和办公室安装了插件。他保持他的家庭Outlook开放,在工作忙碌了一天,发送了几条消息并显示对话框后,他检查了他在家里的观点。这将是几个打开的对话框,关于他在白天发送的消息。
有没有办法限制对话框?打开用户从哪里发送消息的对话框?这样,用户就不会在任何其他打开的Outlook中有任何对话框...
由于
修改
刚检查了我的代码并且存在误解(我的部分偏离了课程)。我从方法中删除了一些代码,只是为了更容易阅读...
代码中有两个事件处理程序:
Outlook.Folder sentbox;
Outlook.Items myOlItems = null;
this.itemsendhndler = newicrosoft.Office.Interop.Outlook.ApplicationEvents_11_ItemSendEventHandler(Application_ItemSend);
this.Application.ItemSend += itemsendhndler;
this.hndler = new Outlook.ItemsEvents_ItemAddEventHandler(Application_ItemAdd);
sentbox = this.Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderSentMail) as Outlook.Folder;
myOlItems = sentbox.Items;
myOlItems.ItemAdd += this.hndler;
然后,在Application_ItemAdd中有onItemSend方法,我认为它是Application_ItemSend ...
void Application_ItemAdd(object Item)
{
this.onItemSend(Item);
}
private void Application_ItemSend(object item, ref bool Cancel)
{
Outlook.MailItem mail = item as MailItem;
if (mail == null)
return;
//Make sure this is a E-mail message
if (string.Compare(OutlookItemHelper.GetMessageClass(mail), "IPM.Note") != 0)
return;
mail.DeleteAfterSubmit = false;
Outlook.Folder sentFolder = this.Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderSentMail) as Outlook.Folder;
if (sentFolder != null)
mail.SaveSentMessageFolder = sentFolder; // override the default sent items location
Cancel = false;
}
private void onItemSend(object Item)
{
Outlook.MailItem itm = null;
itm = (Outlook.MailItem)Item;
using (ExampleDialog dlg = new ExampleDialog())
{
//code after actions...
}
}
无论如何,在Application_ItemSend事件中没有打开对话框。我的坏人......我今天学到了新东西!
谢谢大家,我为新手问题道歉...
答案 0 :(得分:1)