changing color of the pointed treeView node
C#
3
Posts
3
Posters
0
Views
1
Watching
-
how to change color of the selected or pointed node in a tree view control. i know about the selectecd node property...but in this case i cant use it. Thanks in advance shaz jazz
If you want to do something to the selected node, you *need* to use the selected node property.
Christian Graus - C++ MVP 'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert
-
how to change color of the selected or pointed node in a tree view control. i know about the selectecd node property...but in this case i cant use it. Thanks in advance shaz jazz
For example:
YourNode.BackColor = Color.Green; YourNode.ForeColor = Color.White;
SkyWalker