WinForms TreeView - "Selected Node" indicator - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T01:40:01Zhttp://stackoverflow.com/feeds/question/935919http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/935919/winforms-treeview-selected-node-indicator0WinForms TreeView - "Selected Node" indicatorB. Tyndall2009-06-01T17:52:54Z2009-06-01T17:57:53Z
<p>What is the best way to leave some indicator of which TreeNode is selected in a TreeView on a WinForm?</p>
http://stackoverflow.com/questions/935919/winforms-treeview-selected-node-indicator/935932#9359324Answer by jrista for WinForms TreeView - "Selected Node" indicatorjrista2009-06-01T17:56:22Z2009-06-01T17:56:22Z<p>Disable the HideSelection flag on the TreeView control. By default, the selected node highlight is hidden when the control looses focus. </p>
http://stackoverflow.com/questions/935919/winforms-treeview-selected-node-indicator/935942#9359421Answer by arul for WinForms TreeView - "Selected Node" indicatorarul2009-06-01T17:57:53Z2009-06-01T17:57:53Z<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.treeview.checkboxes.aspx" rel="nofollow">Checkboxes</a>, or if you want a less invasive way you might try just changing <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.treenode.backcolor.aspx" rel="nofollow">the node's background</a>.</p>