0

我正在尝试为我们的 CRM 应用程序创建一个VCF 文件的导出方法。

我正在运行新的 VS 2010,但将项目定位为 .NET 3.5

连接到这个上下文菜单的技术是什么?

替代文字 http://www.balexandre.com/temp/2010-04-14_1523.png

我对 AddIns 很陌生,但逻辑思路是创建一个 Outlook AddIn,但我很遗憾地未能将菜单项添加到此上下文菜单:(

感谢您对此的任何帮助

4

1 回答 1

1

知道了

替代文字 http://www.balexandre.com/temp/2010-04-14_1604.png

this.Application.AttachmentContextMenuDisplay += 
    new Outlook.ApplicationEvents_11_AttachmentContextMenuDisplayEventHandler(ThisAddIn_AttachmentContextMenuDisplay);

然后在 eventHandler

private void ThisAddIn_AttachmentContextMenuDisplay(Office.CommandBar commandBar, Outlook.AttachmentSelection attachments)
{
    if (attachments.Count > 0)
    {
        Office.CommandBarControl cbc = commandBar.Controls.Add(
                  Office.MsoControlType.msoControlButton, 
                  missing, missing, missing, true);

        cbc.Caption = "Export into SuperOffice";
        cbc.OnAction = "Action";
    }
}
于 2010-04-14T14:07:22.757 回答