vote up 2 vote down star

The System.Web.UI.WebControls.TreeView class offers this event, but the Forms version of TreeView doesn't. What's the equivalent in the Forms world? I'm using AfterSelect but it doesn't seem quite right. Maybe it is in fact what I'm looking for but the documentations is a bit hazy.

flag

58% accept rate

2 Answers

vote up 2 vote down

There's none in WinForms TreeView. To quote MSDN for TreeView.AfterSelect:

This event does not occur when the node is unselected. To detect this occurrence, handle the Control.MouseUp event and test the TreeNode.IsSelected property.

Yes, this sucks.

link|flag
Control.MouseUp? They must be kidding. What if the tree is being navigating with keys instead of the mouse? – I. J. Kennedy Nov 4 at 1:13
Well, ok, it sucks, but you could always just extend the control and add the event yourself. – Ed Swangren Nov 4 at 1:26
How can you deselect a node with the keyboard? – SLaks Nov 4 at 1:32
The tab button I guess. – Ed Swangren Nov 4 at 1:36
That won't deselect a node. It'll unfocus the TreeView, but the selection will remain. – SLaks Nov 4 at 1:46
show 2 more comments
vote up 1 vote down

There's nothing wrong with using AfterSelect.

However, note that it won't fire if the selection is cleared (if SelectedNode becomes null) Instead, you can handle MouseUp, as recommended in the documentation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.