是否可以创建办公室加载项以为Word 2016制作多个功能区(并自定义UI),就像使用VSTO补充功能一样?如何为其生成xml清单?
我正在尝试类似的操作,但这不起作用...
<ExtensionPoint xsi:type="PrimaryCommandSurface">
<CustomTab id="Tab1">
<Label resid="LabTab1" />
<Group id="Group1Id1">
....
</Group>
</CustomTab>
<CustomTab id="Tab2">
<Label resid="LabTab2" />
<Group id="Group1Id2">
....
</Group>
</CustomTab>
<CustomTab id="Tab3">
<Label resid="LabTab3" />
<Group id="Group1Id3">
....
</Group>
</CustomTab>
</ExtensionPoint>
Thx
答案 0 :(得分:0)
Office加载项命令可使用的功能区控件数量有限。标签中的控件限制为Button and Menu controls。也有supported platforms and clients的某些列表。通过观看“第9频道” Add-in Commands in the Office Ribbon演示,您可能会很快意识到这种可能性。
编辑:
每个CustomTab element上的文档:在自定义选项卡上,加载项最多可以创建10个组。每个组限于6个控件,无论它出现在哪个选项卡上。 加载项仅限于一个自定义标签。