TreeView Selected Node

  • Thread starter Thread starter Brian P. Hammer
  • Start date Start date
B

Brian P. Hammer

All,

I can find the selected node of a treview but how can I change the format of the one node. I am trying to bold it or change the font color so that the user knows which node is selected. Currently, if another control is selected, the selection states goes away in treeview.

Thanks,
Brian P. Hammer
 
You can simply set the HideSelection Property to false
for the TreeView. This property states Removes highlight
from the selected node when control doesn't have focus
and defaults to true.
 
Back
Top