【问题标题】:Outlook Web Addin Context MenuOutlook Web 插件上下文菜单
【发布时间】:2023-03-22 02:42:01
【问题描述】:

尝试在电子邮件阅读页面上的 Outlook Web 插件(使用 VS Code)中添加上下文菜单,但未显示任何内容。不确定缺少什么或是否要在 manifest.xml 中添加任何其他部分

参考代码来自:https://docs.microsoft.com/en-us/office/dev/add-ins/outlook/contextual-outlook-add-ins

橙色高亮部分需要上下文菜单

<ExtensionPoint xsi:type="DetectedEntity">
        <Label resid="contextLabel" />
        <!--If you opt to include RequestedHeight, it must be between 140px to 450px, inclusive.-->
        <!--<RequestedHeight>360</RequestedHeight>-->
        <SourceLocation resid="detectedEntityURL" />
          <Rule xsi:type="RuleCollection" Mode="Or">
            <Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" />
            <Rule xsi:type="ItemIs" ItemType="Appointment" FormType="Read" /> 
            <Rule xsi:type="ItemHasKnownEntity" EntityType="PhoneNumber" Highlight="all" />
          </Rule>
      </ExtensionPoint>

【问题讨论】:

    标签: visual-studio-code office-js outlook-addin outlook-web-addins outlook-2016


    【解决方案1】:

    您对上下文加载项和上下文菜单感到困惑。

    Outlook 加载项不支持此处每个文档的上下文菜单扩展点:https://docs.microsoft.com/en-us/office/dev/add-ins/reference/manifest/extensionpoint

    从文档中可以看出,您在 Outlook 中没有 ContextMenu,而在 W、X、P、OneNote 中有它。

    Word、Excel、PowerPoint 和 OneNote 加载项命令的扩展点。

    • PrimaryCommandSurface - Office 中的功能区。
    • 上下文菜单 - 在 Office UI 中单击鼠标右键时出现的快捷菜单。

    Outlook MessageReadCommandSurface 的扩展点

    • MessageComposeCommandSurface
    • AppointmentOrganizerCommandSurface
    • AppointmentAttendeeCommandSurface
    • 模块(只能在 DesktopFormFactor 中使用。)
    • MobileMessageReadCommandSurface
    • MobileOnlineMeetingCommandSurface
    • 启动事件
    • 活动
    • 检测到的实体

    上面的清单引用了DetectedEntry 扩展点——这意味着如果满足规则列表中的条件——你应该获得上下文加载项。不是菜单。

    【讨论】:

    • 感谢@Mavi 解惑,有没有办法在 Outlook Web 插件中提供上下文菜单? bdw DetectedEntry 也没有检测到可以满足我的要求以保存联系号码的电话号码
    • 没有。我不确定那里可能有什么问题,您是否尝试过验证您的清单?
    • @Kb15 你认为这个答案符合绿色勾号吗?
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2011-11-12
    • 1970-01-01
    • 2023-03-09
    • 1970-01-01
    • 1970-01-01
    • 2015-04-15
    • 2010-10-27
    相关资源
    最近更新 更多