I use toolTipManager with a TooltipInfo. I have set InitialDelay to both 1000 and 5000 but its just being ignored. The tooltip shows up right away when the mouse hover the element.
The element is a UltraTreeNode.
I used a timer as you suggested which worked well... Anyway i still think the ShowTootip method should use the initialdelay!
If i assign it to the tree it shows tooltip when i hover the tree. I want it to show the tooltip when i hover a node and it should disappear when the cursor leaves the node...
You can either implement a delay yourself using a timer.
Or... instead of calling ShowToolTip, assign the tooltip to the tree using the UltraToolTipManager.GetToolTipInfo method.
How do you recommend the usage of tooltipmanager with treenodes...?
Right now using events on the treeview to found mouseovers on the nodes and then doing the tooltipmanager.ShowToolTip(this) but showtooltip do not use the initialdelay?
I corrected the error myself so nevermind :)