TreeView node: tooltip with a delay

stumper66

Newcomer
Joined
Jul 11, 2006
Messages
16
Location
Seattle, WA
I want to have individual tool tips on my tree nodes in a TreeView.
Using the following works great:
Code:
treeServers.Nodes[0].ToolTipText = "tool tip";
However, I want to have a delay before the tool tip appears (similar to System.Windows.Forms.ToolTip and .AutoPopupDelay), but I can't figure out how to implement it.

Any ideas would be welcomed. I'm using VS 2008 and C#.Net 2.0
 
Back
Top