Outlook 中没有应用程序退出事件?

发布于 2024-11-19 19:41:20 字数 549 浏览 3 评论 0原文

我正在使用 12.0 Interop 库,这是 Outlook 2007 的默认库。我实际上的目标是将 Outlook 2003 到 2010 与注册退出事件的代码示例集成。

尽管 文档 说有一个Outlook 应用程序的 application Quit 事件,我在 Outlook.Application 对象实现中找不到它。

Visual Studio 2010 似乎将 Quit 识别为一种方法:

Quit 似乎是一种方法,而不是事件

问题:

如何注册 Outlook 应用程序的退出事件? (如果应用程序退出时触发一个或任何事件)如果可能,请提供一些示例代码。

谢谢!

I'm using the 12.0 Interop library, which is the default for Outlook 2007. I'm actually aiming for Outlook 2003 to 2010 integration with a code example that registers to a quit event.

Even though the docs say that there is an application Quit event for the Outlook app, I can't find it in the Outlook.Application object implementation.

Visual Studio 2010 seems to identify Quit as a method:

Quit seems to be a method, not an event

Question:

How would one register to the Outlook application's Quit event? (if there is one, or any event that is triggered when the application quits) If possible provide some example code.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦里人 2024-11-26 19:41:20
((Outlook.ApplicationEvents_11_Event)Application).Quit 
+= new Outlook.ApplicationEvents_11_QuitEventHandler(ThisAddIn_Quit);

void ThisAddIn_Quit()
{
   System.Windows.Forms.MessageBox.Show("bye bye problem, I found the solution!!");
}
((Outlook.ApplicationEvents_11_Event)Application).Quit 
+= new Outlook.ApplicationEvents_11_QuitEventHandler(ThisAddIn_Quit);

void ThisAddIn_Quit()
{
   System.Windows.Forms.MessageBox.Show("bye bye problem, I found the solution!!");
}
椒妓 2024-11-26 19:41:20

只是尝试给出一个解决方案:也许您可以获取 Outlook process 并监听 Process.Exited 事件。

Just try to give a solution: may be you can get Outlook process and listen for Process.Exited event.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文