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 AfterSelect 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 TreeViewCancelEventArgs.Action equals TreeViewAction.Unknown and then canceling the selection. This seems really hacky, so I'm wondering if there's another way to fix this.
|
|
|
||
|
|
|
|
I had to over come this same exact problem (but on the compact framework) where the BeforeSelect event isn't exposed ( I was bummed). But think got a fairly elegent solution and hope might help others!! 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 I then overrode the event handlers as such: /// /// //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.
/// /// protected override void OnGotFocus(EventArgs e) { treeHasFocus = true; //base.OnGotFocus(e);
|
||
|
|
|
|
I agree that using Create a
|
||||
|
