WinForms TreeView - "Selected Node" indicator - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T01:40:01Z http://stackoverflow.com/feeds/question/935919 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/935919/winforms-treeview-selected-node-indicator 0 WinForms TreeView - "Selected Node" indicator B. Tyndall 2009-06-01T17:52:54Z 2009-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#935932 4 Answer by jrista for WinForms TreeView - "Selected Node" indicator jrista 2009-06-01T17:56:22Z 2009-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#935942 1 Answer by arul for WinForms TreeView - "Selected Node" indicator arul 2009-06-01T17:57:53Z 2009-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>