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
165
How to show tooltips in a RibbonToolBar?
posted

Hey Guys,

I dont know if this thread belongs to this part of the the forum.

My Problem:

Im working with a Ribbontoolbar. Now i want to show tooltips when entering a tool with the mouse. But i dont fint the property.

I found the Ultratooltipmanager.  My problem is that i dont understand this control...can someone help me?

maybe someone know the property for show the tooltip:)

  • 48586
    posted

    Hello,

     

    If you want to display a tooltip when user hover over the tool, then you need to assign the tooltip text that should be displayed to TooltipText or ToolTipTextFormatted of the tool.

     

    UltraToolbarsManager.Toolbar[“your toolbar”].Tools[“YourTool”].ShareProps.TooltipText = “Some text”;

     

    Let me know if you have any further questions.