2

在 Word、Excel 和 PowerPoint 2016 (16.0.6366.2036)(桌面版)的最新版本中,CustomUI 中为后台视图定义的图像不再显示。在以下配置文件中,应用程序不会显示 HappyFace 或任何指定的图像本身。

<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="OnRibbonLoaded" loadImage="getImages">
    <backstage>
        <tab idMso="TabRecent">
            <firstColumn>
                <taskFormGroup idMso="GroupOpenPlaces">
                    <category idMso="ButtonCategoryRecentDocuments">
                        <task id="task1" label="My main task" insertAfterMso="ButtonTaskRecentDocuments" imageMso="HappyFace">
                        </task>
                    </category>
                </taskFormGroup>
            </firstColumn>
        </tab>
    </backstage>
</customUI>

此外,在后台视图中为组定义的回调(例如 getLabel 和 getHelperText 等)也不会被调用。请参见下面的示例。未调用回调“getGroupLabel”和“getGroupHelperText”。

<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="OnRibbonLoaded" loadImage="getImages">
    <backstage>
        <tab idMso="TabInfo">
            <firstColumn>
                <group id="group1" getLabel="getGroupLabel" getHelperText="getGroupHelperText" insertBeforeMso="GroupPermissions">
                </group>
            </firstColumn>
        </tab>
    </backstage>
</customUI>

这些在 Office 2016 的早期版本中工作。请告知是否有解决方法,如果这是设计使然。谢谢。

4

0 回答 0