Outlook添加Outlook关闭事件

时间:2014-07-02 13:19:35

标签: outlook-addin outlook-2010 shutdown

我正在使用Outlook加载项项目。 Outlook是否已关闭任何事件或事件?我需要在关闭Outlook之前调用服务方法。

1 个答案:

答案 0 :(得分:1)

是的,您可以使用Application对象的Quit event

Quit开始关闭时会触发Outlook事件。

C#示例:

((Outlook.ApplicationEvents_11_Event)Application).Quit 
+= new Outlook.ApplicationEvents_11_QuitEventHandler(ThisAddIn_Quit);

void ThisAddIn_Quit()
{
   MessageBox.Show("Ciao!");
}

here复制。

注意:
关于加载项开发人员here的关闭还有一些其他提示。