Office365 Word、Excel和PowerPoint 2016(16.0.6366.2036)后台视图的图像和回调不再工作

Office365 Word、Excel和PowerPoint 2016(16.0.6366.2036)后台视图的图像和回调不再工作,office365,office-addins,office-2016,Office365,Office Addins,Office 2016,在Word、Excel和PowerPoint 2016(16.0.6366.2036)(桌面版)的最新版本中,在CustomUI中为后台视图定义的图像不再显示。在下面的配置文件中,应用程序不会显示HappyFace或任何指定的映像本身 <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="OnRibbonLoaded" loadImage="getImages"> <

在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的早期版本中使用的。请告知是否有解决方法,以及这是否是出于设计。谢谢