Add tooltip to Excel Add-in Custom Ribbon UI XML

后端 未结 1 1387
北恋
北恋 2021-01-05 01:24

I am creating an Excel Add-In that has a custom Ribbon UI. I would like to add a tooltip for my buttons. What XML attributes can I use to set this?



        
相关标签:
1条回答
  • 2021-01-05 02:28

    You can use "screentip" and "supertip":

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

    BTW, you should have autocomplete normally when you edit the ribbon XML in VS. If you don't make sure you have Ribbon schema file available.

    0 讨论(0)
提交回复
热议问题