Is it possible to specify a tooltip for each ListToolItem in a ListTool?
I can't see any obvious way of doing this.
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
Maybe I'm missing something but my question had nothing to do with UltraListView. It's in the WinToolbars forum, and I refer to ListTool and ListToolItem.
ListToolItem allows you to specify several things that apply to just that item in the list tool, but there's nothing for tooltip. Can you suggest a way to achieve this? I'm thinking I could forget about ListTool and just add ButtonTools in a loop as they allow me to specify a tooltip.