I whould like to select a WPF TreeView Node on right click, right before the ContextMenu displayed.
For WinForms I could use code like this http://stackoverflow.com/questions/2527/c-treeview-context-menus, what are the WPF alternatives?
|
I whould like to select a WPF TreeView Node on right click, right before the ContextMenu displayed. For WinForms I could use code like this http://stackoverflow.com/questions/2527/c-treeview-context-menus, what are the WPF alternatives?
| |||
|
feedback
|
|
Depending on the way the tree was populated, the sender and the e.Source values may vary (http://stackoverflow.com/questions/593194/why-e-source-depends-on-treeview-populating-method) One of the possible solutions is to use e.OriginalSource and find TreeViewItem using the VisualTreeHelper:
| |||
|
feedback
|
|
In XAML, add a PreviewMouseRightButtonDown handler in XAML:
Then handle the event like this:
| |||||
feedback
|
|
Using "item.Focus();" doesn't seems to work 100%, using "item.IsSelected = true;" does. | |||
|
feedback
|
|
Almost Right, but you need to watch out for non visuals in the tree, (like a
| ||||
|
feedback
|
|
I think registering a class handler should do the trick. Just register a routed event handler on the TreeViewItem's PreviewMouseRightButtonDownEvent in your app.xaml.cs code file like this:
| |||
|
feedback
|