问题
I am extending the contextmenu shown for attachments in Outlook 2010 in xml. So far i've got a button and a handler for the onAction event. Could anybody help me on how to get the currrently selected attachments from here?
回答1:
Ok, got it. http://msdn.microsoft.com/en-us/library/ee692172.aspx#OfficeOLExtendingUI_AttachmentContextMenu
says
IRibbonControl.Context
AttachmentSelection object
so =>
var attachmentSelection = (control.Context as AttachmentSelection).OfType<Attachment>();
来源:https://stackoverflow.com/questions/7316083/extending-the-oulook-2010-attachment-context-menu