Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1690
Tooltip on a RibbonTool
posted

Hi,

How can i add a tooltip to a ribbontool?

Regards,

Michael

Parents
  • 1354
    Verified Answer
    posted

    Hi Michael,

    You can set your tooltip on any tool like this:

     

    <ig:ButtonTool Caption="Button With Tip">

         <ig:ButtonTool.Style>

              <Style TargetType="ig:ButtonToolControl">

                    <Setter Property="ToolTipService.ToolTip" Value="This is my tooltip." />

               </Style>

          </ig:ButtonTool.Style>

      </ig:ButtonTool>

    <ig:ButtonTool Caption="Button"/>

     

Reply Children