Windows Forms TreeView always selects a node on focus - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T03:11:10Zhttp://stackoverflow.com/feeds/question/800230http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/800230/windows-forms-treeview-always-selects-a-node-on-focus0Windows Forms TreeView always selects a node on focusMichael Kelley2009-04-28T23:13:31Z2009-06-10T22:50:13Z
<p>The TreeView in Windows Forms always seems to want a node selected when it regains focus. If I have no nodes selected, and that treeview gains focus, I'll get an <code>AfterSelect</code> event with the first node selected, even though I didn't select it using the keyboard, mouse, or programmatically. The only workaround I can find is to check if the <code>TreeViewCancelEventArgs.Action</code> equals <code>TreeViewAction.Unknown</code> and then canceling the selection. This seems really hacky, so I'm wondering if there's another way to fix this.</p>
http://stackoverflow.com/questions/800230/windows-forms-treeview-always-selects-a-node-on-focus/800665#8006652Answer by Jeff Mattfield for Windows Forms TreeView always selects a node on focusJeff Mattfield2009-04-29T02:35:30Z2009-04-29T02:35:30Z<p>I agree that using <code>TreeViewAction.Unknown</code> in this case is less than desirable. Consider using the <code>BeforeSelect</code> event, which provides an opportunity to prevent the <code>AfterSelect</code> event.</p>
<p>Create a <code>GotFocus</code> event handler that sets a flag. Then, create a <code>BeforeSelect</code> event handler that, if the flag is set, cancels the event and clears the flag. For example:</p>
<pre><code>private bool treeViewWasNewlyFocused = false;
private void TreeView1_BeforeSelect(object sender, TreeViewCancelEventArgs e)
{
if(treeViewWasNewlyFocused)
{
e.Cancel = true;
treeViewWasNewlyFocused = false;
}
}
private void TreeView1_GotFocus(object sender, EventArgs e)
{
treeViewWasNewlyFocused = true;
}
</code></pre>
http://stackoverflow.com/questions/800230/windows-forms-treeview-always-selects-a-node-on-focus/978530#9785301Answer by Willie for Windows Forms TreeView always selects a node on focusWillie2009-06-10T22:50:13Z2009-06-10T22:50:13Z<p>I had to over come this same exact problem (but on the compact framework) where the BeforeSelect event isn't exposed ( I was bummed).</p>
<p>But think got a fairly elegent solution and hope might help others!!</p>
<p>I made a derived TreeView control (so could select multiple items at once), but will also corrects the "auto" selection of the first node on getting FOCUS.
- public class TreeView_MultSel : System.Windows.Forms.TreeView</p>
<p>I then overrode the event handlers as such:</p>
<p>///
/// //This actually occurs AFTER actual Treeview control:
// - Got Focus in reality
// - Executed the "innate" behaviour (like a button showing "depressed")
// - The "innate and UNWANTED behaviour of the Treeview is to selected the first Node
// when gets the focus.</p>
<pre><code> //The key here is the Treeview executes in this order (when Tree Selected and didn't have focus):
// - First the Node is selected (before OnGotFocus is executed)
// Since when LostFocus "treeHasFocus" = false the OnAfterSelect handler isn't called!!
//
// - Then the OnGotFocus is called:
// This will set treeHasFocus to True and will not react to selections
</code></pre>
<p>///
///
protected override void OnGotFocus(EventArgs e)
{
treeHasFocus = true;
//base.OnGotFocus(e);</p>
<pre><code> }
/// <summary>
/// Alot easier to handle here (in Derived TreeView control then using all kinds of
/// -= events to try to prevent.
///
/// This was the cleanest way I could find (prevent firing of AfterSelect)
/// </summary>
/// <param name="e"></param>
protected override void OnLostFocus(EventArgs e)
{
treeHasFocus = false;
//base.OnLostFocus(e);
}
/// <summary>
/// - Treeview Control defaults to selecting the first node (when gets focus)
/// - We do NOT want this - since would automatically Highlight the first node (select)
/// - treeHasFocus is NOT true for the first unwanted "automatic" selection of the first item
/// - Upon loosing Focus, the AfterSelect handler is never called.
/// </summary>
/// <param name="e"></param>
protected override void OnAfterSelect(TreeViewEventArgs e)
{
if (treeHasFocus)
base.OnAfterSelect(e);
this.SelectedNode = null;
}
</code></pre>