C# Outlook Addin - 上下文菜单处理

发布于 2024-12-03 08:27:42 字数 846 浏览 0 评论 0原文

当您在 Outlook 中右键单击电子邮件时,我们会设置一个自定义上下文菜单,如下所示:

        private void _application_ItemContextMenuDisplay(Office.CommandBar CommandBar, Interop.Selection Selection)
        {
                var contextButton = (Office.CommandBarButton)CommandBar.Controls.Add(Office.MsoControlType.msoControlButton, Temporary: true);
                contextButton.Visible = true;
                contextButton.Caption = "&My Context Menu";
                contextButton.Click += MyContextMenu_Click;
        }

此方法订阅了 Application.ItemContextMenuDisplay

它工作正常,只是偶尔我们的事件会被多次触发。当您快速右键单击不同的电子邮件时,就会发生这种情况。

然后我想知道什么时候是清理临时上下文菜单项的好地方?我需要在某处取消订阅 C# 事件。这样做的预定地点在哪里? (我还认为我们可能需要调用 Marshal.ReleaseComObject

我们在 Visual Studio 中使用 VSTO 和 Outlook 2010 项目模板。一般来说,我还没有找到很多自定义上下文菜单的好例子。

We setup a custom context menu when you right click an email in Outlook like so:

        private void _application_ItemContextMenuDisplay(Office.CommandBar CommandBar, Interop.Selection Selection)
        {
                var contextButton = (Office.CommandBarButton)CommandBar.Controls.Add(Office.MsoControlType.msoControlButton, Temporary: true);
                contextButton.Visible = true;
                contextButton.Caption = "&My Context Menu";
                contextButton.Click += MyContextMenu_Click;
        }

This method is subscribed to Application.ItemContextMenuDisplay.

It's working fine, except that occasionally our event gets fired multiple times. It happens when you right-click quickly on different emails.

Then it makes me wonder, when is a good place to cleanup my temporary context menu item? I need to unsubscribe the C# event somewhere. Where is the intended place to do that? (I would also think we might need to call Marshal.ReleaseComObject)

We are using VSTO and the Outlook 2010 project template in Visual Studio. I haven't found many good examples of customizing the context menu, in general.

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

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

发布评论

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

评论(1

浮生面具三千个 2024-12-10 08:27:42

这种怪异可能就是为什么在 Outlook 2010 中,Microsoft 更多地转向 功能区 XML 上下文菜单自定义支持 Outlook 2007 风格的 CommandBars。请参阅相关 SO 帖子

至于清理 CommandBars 使用的资源,您需要附加到 Application.ContextMenuClose 事件以释放资源并取消订阅侦听器。请参阅有关处置 Outlook 上下文菜单的相关 SO 帖子

您应该重构代码以利用较新的 Ribbon XML 界面以避免 CommandBars

This quirkiness is probably why in Outlook 2010, Microsoft is moving more towards the Ribbon XML context menu customizations in favor of the Outlook 2007-style of CommandBars. See related SO post.

As for cleaning up resources used by the CommandBars, you would need to attach to the Application.ContextMenuClose event to free up resources and unsubscribe your listener. See related SO post on disposing Outlook Context Menus.

You should refactor your code to utilize the newer Ribbon XML interface to avoid CommandBars.

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