得到它
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";
}
}