6

我为选定的附件创建了一个 Outlook 插件,以获取附件的详细信息。并且它在 Outlook 2010 中工作正常。但是当我为 Outlook 2016 构建它时,它变为空。

下面是 ThisAddIn.cs 中的代码:-

 private void ThisAddIn_Startup(object sender, System.EventArgs e)
        {
            System.Reflection.Assembly assemblyInfo = System.Reflection.Assembly.GetExecutingAssembly();
            Uri uriCodeBase = new Uri(assemblyInfo.CodeBase);
            string Location = Path.GetDirectoryName(uriCodeBase.LocalPath.ToString());
            var path = Location.Split(new string[] { "bin" }, StringSplitOptions.RemoveEmptyEntries);
            var rootDir = path[0].ToString();
            var forPermissionsRootDirectory = Path.GetDirectoryName(rootDir);
            SetPermissions(forPermissionsRootDirectory);

            app = this.Application;
            app.AttachmentContextMenuDisplay += new Outlook.ApplicationEvents_11_AttachmentContextMenuDisplayEventHandler(app_AttachmentContextMenuDisplay);//attach Attachment context Menu Event//

        }

 void app_AttachmentContextMenuDisplay(Office.CommandBar CommandBar, Outlook.AttachmentSelection selection)
        {
            selectedAttachment = selection;
            RibbonUI.InvalidateControlMso("ContextMenuAttachments");//will get XML file data//

        }

这是 AttachmentContextMenu.cs 中的代码:-

public void OnOpenMyMotionCalendarButtonClick(Office.IRibbonControl control)
        {
            Outlook.AttachmentSelection selection = ThisAddIn.selectedAttachment;
             if ((selection.Count > 0))
                {
                   //My further working
                }
         }

在选择中,outlook 2016总是为空。请建议怎么做?

亲切的问候,爱丽儿

4

1 回答 1

0

我相信 Outlook 开发人员添加了一个额外的逻辑来释放作为参数对象(附件)传递的内容。因此,您需要在事件处理程序中收集所有必需的信息,因为一旦方法结束,对象就会被销毁。没有人能保证在事件处理程序被触发后对象仍然存在。你在AttachmentContextMenuDisplay事件处理程序中得到一个有效的对象吗?

所有 Outlook 加载项都应在不再需要时系统地释放对 Outlook 对象的引用。使用System.Runtime.InteropServices.Marshal.ReleaseComObject在您使用完 Outlook 对象后释放它。然后在 Visual Basic 中将变量设置为 Nothing(在 C# 中为 null)以释放对对象的引用。在系统地释放对象文章中阅读更多相关信息。

于 2016-01-24T15:32:40.793 回答