固定 Outlook 加载项的任务窗格

问题描述 投票:0回答:1

按照文档,我已将

<SupportsPinning>true</SupportsPinning>
添加到我的
manifest.xml
,但我的任务窗格仍然无法固定。

我的

ExtensionPoint
元素看起来像这样

<ExtensionPoint xsi:type="MessageReadCommandSurface">
  <OfficeTab id="TabDefault">
    <Group id="FreightStackAIGroup">
      <Label resid="GroupLabel" />
      <Control xsi:type="Button" id="taskPaneButton">
        <Label resid="TaskpaneButton.Label" />
        <Supertip>
          <Title resid="TaskpaneButton.OpenLabel" />
          <Description resid="TaskpaneButton.Tooltip" />
        </Supertip>
        <Icon>
          <bt:Image size="16" resid="Icon.16x16" />
          <bt:Image size="32" resid="Icon.32x32" />
          <bt:Image size="80" resid="Icon.80x80" />
        </Icon>
        <Action xsi:type="ShowTaskpane">
          <SourceLocation resid="Taskpane.Url" />
          <SupportsPinning>true</SupportsPinning>
        </Action>
      </Control>
    </Group>
  </OfficeTab>
</ExtensionPoint>

我已在 Windows 版 Outlook 桌面应用程序Outlook Web 应用程序中进行了测试。

outlook office-js outlook-addin office-addins outlook-web-addins
1个回答
0
投票

您能指出完整的清单吗?

© www.soinside.com 2019 - 2024. All rights reserved.