Outlook加载项功能区图标仅在Windows的Outlook应用程序中不显示

时间:2019-04-01 23:17:35

标签: outlook outlook-addin outlook-web-addins

我正在为Outlook开发一个外接程序,以便在“约会”选项卡上使用。我的问题是,初始化加载项的功能区图标未显示正确的图标(最终退回到Microsoft的默认蓝色六边形),而仅在Windows Outlook应用程序上显示。 图标在Mac上的Outlook和Outlook Web客户端上正确显示。

试图将图标的大小调整为64x64和128x128(高分辨率),删除并重新安装外接程序,并通过清单验证器进行验证。一切似乎都很好,但问题仍然存在。

这些是我认为与问题相关的清单的一部分(用localhost替换为URL)(如果我错过了任何内容,请随时询问其他部分。

<IconUrl DefaultValue="https://localhost:8080/assets/icon-dark-64.png" />
<HighResolutionIconUrl DefaultValue="https://localhost:8080/assets/icon-dark-128.png" />
<DesktopFormFactor>
    <FunctionFile resid="functionFile" />
    <ExtensionPoint xsi:type="AppointmentOrganizerCommandSurface">
        <OfficeTab id="TabDefault">
            <Group id="meetingGroup">
                <Label resid="groupLabel" />
                <Control xsi:type="Button" id="meetingOpenPaneButton">
                    <Label resid="paneMeetingButtonLabel" />
                    <Supertip>
                        <Title resid="paneMeetingSuperTipTitle" />
                        <Description resid="paneMeetingSuperTipDescription" />
                    </Supertip>
                    <Icon>
                        <bt:Image size="16" resid="icon16" />
                        <bt:Image size="32" resid="icon32" />
                        <bt:Image size="64" resid="icon64" />
                        <bt:Image size="80" resid="icon80" />
                    </Icon>
                    <Action xsi:type="ShowTaskpane">
                        <SourceLocation resid="messageMeetingTaskPaneUrl" />
                    </Action>
                </Control>
            </Group>
        </OfficeTab>
    </ExtensionPoint>
</DesktopFormFactor>
<Resources>
    <bt:Images>
        <bt:Image id="icon16" DefaultValue="https://localhost:8080/assets/icon-dark-16.png" />
        <bt:Image id="icon32" DefaultValue="https://localhost:8080/assets/icon-dark-32.png" />
        <bt:Image id="icon64" DefaultValue="https://localhost:8080/assets/icon-dark-64.png" />
        <bt:Image id="icon80" DefaultValue="https://localhost:8080/assets/icon-dark-80.png" />
    </bt:Images>

    ... <!-- Other resources -->
</Resources>

1 个答案:

答案 0 :(得分:0)

所有图像URI(例如用于外接程序命令的URI)必须支持缓存。托管映像的服务器不应返回Cache-Control标头,该标头在HTTP响应中指定no-cache,no-store或类似选项。查找更多详细信息here