让按钮打开一个新窗口



我想在加载项的选项卡下添加一个按钮,单击该按钮应在新窗口或对话框中打开一个 URL。我尝试了以下方法:

<Group id="Contoso.Tab1.Group2">
<Label resid="Contoso.Tab1.GroupLabel" />
<Icon>
<bt:Image size="16" resid="Contoso.TaskpaneButton3.Icon" />
<bt:Image size="32" resid="Contoso.TaskpaneButton3.Icon" />
<bt:Image size="80" resid="Contoso.TaskpaneButton3.Icon" />
</Icon>
<Control xsi:type="Button" id="Contoso.TaskpaneButton3">
<Label resid="Contoso.TaskpaneButton3.Label" />
<Supertip>
<Title resid="Contoso.TaskpaneButton3.Label" />
<Description resid="Contoso.TaskpaneButton3.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Contoso.TaskpaneButton3.Icon" />
<bt:Image size="32" resid="Contoso.TaskpaneButton3.Icon" />
<bt:Image size="80" resid="Contoso.TaskpaneButton3.Icon" />
</Icon>
<Action xsi:type="ShowTaskpane">
<TaskpaneId>Button3</TaskpaneId>
<SourceLocation resid="Contoso.Taskpane3.Url" />
</Action>
</Control>
</Group>
... ...
<bt:Url id="Contoso.Taskpane3.Url" DefaultValue="https://www.stackoverflow.com/" />

问题是它仍然尝试在任务窗格中打开该链接,而不是在新窗口或对话框中打开该链接。有谁知道如何修改清单来实现这一点?

在谷歌搜索了Office dev之后,我发现您可以将动作标签更改为类似

<!-- This is what happens when the command is triggered (E.g. click on the Button). Supported actions are ExecuteFunction or ShowTaskpane. -->
<Action xsi:type="ExecuteFunction">
<FunctionName>doSomethingAndShowDialog</FunctionName>
</Action>

检查以下链接可能会有所帮助

https://github.com/OfficeDev/Office-Add-in-Dialog-API-Simple-Example

相关内容

  • 没有找到相关文章

最新更新