C# Stop a Treeview selecting one or more TreeNodes - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T19:59:29Z http://stackoverflow.com/feeds/question/378097 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/378097/c-stop-a-treeview-selecting-one-or-more-treenodes 0 C# Stop a Treeview selecting one or more TreeNodes TK 2008-12-18T15:03:03Z 2009-06-09T22:32:46Z <p>I have a TreeView control showing multiple TreeNodes in an organised heirarchy. I want to stop the user selecting the highest level Nodes (this was achieved by using the BeforeSelect Event). I also want to stop the TreeView from highlighting the top level nodes if the user selects them i.e. stop the TreeView from changing the background color of the node and 'selecting' it.</p> <p>The TreeView that I am using is the WinForms version of the control.</p> <p>Below is the source code I am currently attempting to use:</p> <pre><code>private void tree_BeforeSelect ( object sender, TreeViewCancelEventArgs e ) { if ( e.Node.Level == 0 ) { e.Cancel = true; } } </code></pre> <p>This does de-select the Node but only after a noticible flash (~200ms) which is undesirable.</p> http://stackoverflow.com/questions/378097/c-stop-a-treeview-selecting-one-or-more-treenodes/378110#378110 3 Answer by Frans Bouma for C# Stop a Treeview selecting one or more TreeNodes Frans Bouma 2008-12-18T15:08:52Z 2008-12-18T15:08:52Z <p>If the selecting is cancelled by setting Cancel to true in the BeforeSelect's event args, the node will not be selected and thus the background color won't change.</p> http://stackoverflow.com/questions/378097/c-stop-a-treeview-selecting-one-or-more-treenodes/972830#972830 1 Answer by OneSHOT for C# Stop a Treeview selecting one or more TreeNodes OneSHOT 2009-06-09T22:32:46Z 2009-06-09T22:32:46Z <p>In addition to your existing code if you add a handler to the MouseDown event on the TreeView with the code and select the node out using it's location, you can then set the nodes colours.</p> <pre><code>private void treeView1_MouseDown(object sender, MouseEventArgs e) { TreeNode tn = treeView1.GetNodeAt(e.Location); tn.BackColor = System.Drawing.Color.White; tn.ForeColor = System.Drawing.Color.Black; } </code></pre> <p>There is still a slight problem in that the select outline still shows on MouseDown but it atleast stops the blue background and gets you a little further.</p> <p>HTH</p> <p>OneSHOT</p>