我正在尝试向我的加载项添加一个控制按钮。我没有更改大部分文件,所以我只包括我的清单的选定部分。即使第二个Control被取消注释,清单也会根据validate-office-addin传递,但在尝试上传到Office 365进行测试时,我被告知我的清单无效。几个小时以来我一直在反对这一点,并希望得到一些帮助。
<Control xsi:type="Button" id="Contoso.TaskpaneButton">
<Label resid="Contoso.TaskpaneButton.Label" />
<Supertip>
<Title resid="Contoso.TaskpaneButton.Label" />
<Description resid="Contoso.TaskpaneButton.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Contoso.tpicon_16x16" />
<bt:Image size="32" resid="Contoso.tpicon_32x32" />
<bt:Image size="80" resid="Contoso.tpicon_80x80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<TaskpaneId>ButtonId1</TaskpaneId>
<SourceLocation resid="Contoso.Taskpane.Url" />
</Action>
</Control>
<Control xsi:type="Button" id="Contoso.RefreshButton">
<Label resid="Contoso.RefreshButton.Label" />
<Supertip>
<Title resid="Contoso.RefreshButton.Label" />
<Description resid="Contoso.RefreshButton.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Contoso.tpicon_16x16" />
<bt:Image size="32" resid="Contoso.tpicon_32x32" />
<bt:Image size="80" resid="Contoso.tpicon_80x80" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>refreshAllReports</FunctionName>
</Action>
</Control>
答案 0 :(得分:0)
事实证明这是清单中的一个错字