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
925
ListToolItem tooltip
posted

Is it possible to specify a tooltip for each ListToolItem in a ListTool?

I can't see any obvious way of doing this.

Parents
  • 48586
    posted

    Hello Alex,

     

    UltraListView automatically displays TooltipText of the items, so what way to customize the tooltip of the items to handle  _ToolTipDisplaying event and add the following line for the items:

     

    e.ToolTipText = "Your Text Here";

    Also you could get the current Item on which the mouse is positioned and set the tooltip for it taking it form Item property of the event args of that event.

     

    Let me know if you have any further questions

     

     

Reply Children