Office加载项显示更改

我已经开发了一个带有两个button的示例Excel加载项。在第一个button的单击中,HTML页面显示在任务窗格中。 单击第二个button时,任务窗格的内容正在更新(另一个HTML页面正在呈现)。

该插件工作正常的旧版本的Excel 2016的Mac,直到我更新到16.7。 更新后,单击第二个button不再更新任务窗格中的页面。

我需要在清单中做出任何更改,以确保加载项在最新版本的Excel 2016 for Mac中正常工作?

清单中的控制定义:

<Control xsi:type="Button" id="SmartView.ButtonPanelApple"> <Label resid="residLabelPanelLogin" /> <Supertip> <Title resid="residLabelPanelLogin" /> <Description resid="residToolTipZone" /> </Supertip> <Icon> <bt:Image size="16" resid="icon_login_16" /> <bt:Image size="32" resid="icon_login_32" /> <bt:Image size="80" resid="icon_login_80" /> </Icon> <Action xsi:type="ShowTaskpane"> <TaskpaneId>MyPane</TaskpaneId> <SourceLocation resid="residLoginUrl" /> </Action> </Control> <Control xsi:type="Button" id="SmartView.ButtonPanelOptimize"> <Label resid="residLabelPanelOptimize" /> <Supertip> <Title resid="residLabelPanelOptimize" /> <Description resid="residToolTipMode" /> </Supertip> <Icon> <bt:Image size="16" resid="icon_optimize_16" /> <bt:Image size="32" resid="icon_optimize_32" /> <bt:Image size="80" resid="icon_optimize_80" /> </Icon> <Action xsi:type="ShowTaskpane"> <TaskpaneId>MyPane</TaskpaneId> <SourceLocation resid="residLogoutUrl" /> </Action> </Control> 

很可能是因为安全补丁。

将外接程序放置在“可信位置”中,或者使位置在您存储外挂程序的位置可信。
文件>选项>信任中心>信任中心设置>受信任的位置

PS不幸的是,信任中心是微软办公室的一个Windowsfunction,因此该解决scheme仅限于Windows操作系统。

检查类似的设置,或者您可以卸载最近更新的安全补丁。