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?
|
2
|
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?
|
||
|
|
|
|
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:
|
||
|
|
|
|
In XAML, add a PreviewMouseRightButtonDown handler in XAML:
Then handle the event like this:
|
||||
|
|
|
Using "item.Focus();" doesn't seems to work 100%, using "item.IsSelected = true;" does. |
||
|
|