VSTO Outlook:为由主题行确定的邮件项目创建动态自定义上下文菜单

发布于 2024-09-12 12:37:01 字数 78 浏览 3 评论 0原文

是否可以通过检查项目的内容来将不同的项目添加到邮件项目自定义上下文菜单?
例如,仅当主题行包含“重要”时才添加该项目。

Is it possible to add different items to a mail item custom context menu by inspecting the contents of the item?

For instance, only add the item if the subject line contains "IMPORTANT".

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

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

发布评论

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

评论(1

笨死的猪 2024-09-19 12:37:25

这似乎有效。

void Application_ItemContextMenuDisplay(Office.CommandBar CommandBar, Outlook.Selection Selection)
    {
        foreach (Outlook.MailItem m in Selection)
        {
            if (m.Subject.Contains("IMPORTANT"))
            {
                DeliveryFailureButton(CommandBar, Selection);
                break;
            }
        }
    }

    void DeliveryFailureButton(Office.CommandBar CommandBar, Outlook.Selection Selection)
    {
        Office.CommandBarButton btn = CommandBar.Controls.Add(
              Office.MsoControlType.msoControlButton,
              missing, missing, missing, true) as
              Office.CommandBarButton;
        btn.Caption = "Move to IMPORTANT messages";

        btn.Click += (Office.CommandBarButton Ctrl, ref bool CancelDefault) =>
        {
            string msg = "CRM Records\r\n";

            foreach (Outlook.MailItem item in Selection)
            {
                if (item is Outlook.MailItem)
                {
                    var mitem = item as Outlook.MailItem;
                    msg += "\r\n" + MoveToImportant(mitem);
                }
            }

            MessageBox.Show(msg);

        };
    }

This seems to work.

void Application_ItemContextMenuDisplay(Office.CommandBar CommandBar, Outlook.Selection Selection)
    {
        foreach (Outlook.MailItem m in Selection)
        {
            if (m.Subject.Contains("IMPORTANT"))
            {
                DeliveryFailureButton(CommandBar, Selection);
                break;
            }
        }
    }

    void DeliveryFailureButton(Office.CommandBar CommandBar, Outlook.Selection Selection)
    {
        Office.CommandBarButton btn = CommandBar.Controls.Add(
              Office.MsoControlType.msoControlButton,
              missing, missing, missing, true) as
              Office.CommandBarButton;
        btn.Caption = "Move to IMPORTANT messages";

        btn.Click += (Office.CommandBarButton Ctrl, ref bool CancelDefault) =>
        {
            string msg = "CRM Records\r\n";

            foreach (Outlook.MailItem item in Selection)
            {
                if (item is Outlook.MailItem)
                {
                    var mitem = item as Outlook.MailItem;
                    msg += "\r\n" + MoveToImportant(mitem);
                }
            }

            MessageBox.Show(msg);

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