2010-04-14 95 views
0

我正在嘗試爲我們的CRM應用程序創建VCF文件的導出方法如何將菜單項添加到Outlook中的文件類型

我運行新的VS 2010,但針對該項目作爲.NET 3.5

什麼是技術掛鉤到這個上下文菜單

alt text http://www.balexandre.com/temp/2010-04-14_1523.png

我很新的加載項,但作爲思想的邏輯線是創建一個Outlook插件,但我沒有草草收場一個菜單項添加到這個上下文菜單:(

謝謝你的任何幫助,在此

回答

1

得到它

alt text http://www.balexandre.com/temp/2010-04-14_1604.png

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

,然後在事件處理程序

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"; 
    } 
} 
相關問題