是否可以通过Office JS加载项中的清单文件设置功能区图标的宽度?

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

我正在制作Office js插件。我通过清单文件在功能区上添加了一些按钮,我想知道是否可以设置图标的宽度,以使结果更一致。

office-js office-addins
1个回答
0
投票

您可以具有各种宽度的图标。 Microsoft要求您的图标大小为16x16、32x32和80x80。这是清单中的片段,说明了这一点:

<Icon>
    <!-- Sample Todo: Each size needs its own icon resource or it will look distorted when resized -->
    <!--Icons. Required sizes: 16, 32, 80; optional: 20, 24, 40, 48, 64. You should provide as many sizes as possible for a great user experience. -->
    <!--Use PNG icons and remember that all URLs on the resources section must use HTTPS -->
    <bt:Image size="16" resid="Contoso.tpicon_16x16" />
    <bt:Image size="32" resid="Contoso.tpicon_32x32" />
    <bt:Image size="80" resid="Contoso.tpicon_80x80" />
</Icon>

然后在参考资料部分:

<Resources>
    <bt:Images>
    <bt:Image id="Contoso.tpicon_16x16" DefaultValue="~remoteAppUrl/Images/Button16x16.png" />
    <bt:Image id="Contoso.tpicon_32x32" DefaultValue="~remoteAppUrl/Images/Button32x32.png" />
    <bt:Image id="Contoso.tpicon_80x80" DefaultValue="~remoteAppUrl/Images/Button80x80.png" />
    </bt:Images>
...
</Resources>
© www.soinside.com 2019 - 2024. All rights reserved.