9

我正在创建一个具有自定义功能区 UI 的 Excel 加载项。我想为我的按钮添加一个工具提示。我可以使用哪些 XML 属性来设置它?

<button id="insertStuff" label="Insert Stuff" size="large" onAction="InsertStuff_EventHandler" imageMso="AddAccount" />
4

1 回答 1

15

您可以使用“screentip”和“supertip”:

<button id="insertStuff" screentip="Tooltip title" supertip="Long description" ...

顺便说一句,当您在 VS 中编辑功能区 XML 时,您应该可以正常自动完成。如果您不确定是否有可用的功能区架构文件。

于 2014-10-31T22:25:47.490 回答