C# Stop a Treeview selecting one or more TreeNodes - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T19:59:29Zhttp://stackoverflow.com/feeds/question/378097http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/378097/c-stop-a-treeview-selecting-one-or-more-treenodes0C# Stop a Treeview selecting one or more TreeNodesTK2008-12-18T15:03:03Z2009-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#3781103Answer by Frans Bouma for C# Stop a Treeview selecting one or more TreeNodesFrans Bouma2008-12-18T15:08:52Z2008-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#9728301Answer by OneSHOT for C# Stop a Treeview selecting one or more TreeNodesOneSHOT2009-06-09T22:32:46Z2009-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>