我在功能区中开发了一个带有两个按钮的示例Excel加载项。单击第一个按钮,任务窗格中将显示一个HTML页面。单击第二个按钮,任务窗格的内容将更新(正在呈现另一个HTML页面)。
加载项适用于旧版Excel 2016 for Mac,直到我将其更新为16.7。更新后,单击第二个按钮不再更新任务窗格中的页面。
我是否需要在清单中进行任何更改,以确保加载项在最新版本的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>
答案 0 :(得分:0)
很可能是因为安全补丁。
将加载项放在受信任位置或使该位置受信任 存放插件的地方。
文件&gt;选项&gt;信托中心&gt;信任中心设置&gt;受信任的位置
P.S不幸的是,Trust Center是Microsoft办公室仅限Windows的功能,因此解决方案仅限于Windows操作系统。
检查类似的设置,或者您可以卸载最近更新的安全补丁。