Select the clicked Item of a RadTreeView
This tutorial will show you how to select the item that was clicked, while opening the RadContextMenu. In order to achieve this, you have to do the following things:
Handle the Opened event of the RadContextMenu
Get an instance of the clicked RadTreeViewItem
Set the SelectedItem of the RadTreeView
Before starting, here is a sample RadTreeView with a sample RadContextMenu attached.
To handle the Opened event attach an event handler to it.
In it get the instance of the clicked RadTreeViewItem by calling the GetClickedElement<T>() method of the RadContextMenu.
The last thing to do is to set the SelectedItem property of the RadTreeView to the instance of the RadTreeView item that has been clicked.
If you are having a dynamic data scenario, where the RadTreeView is bound to a collection, you have to set the SelectedItem property to the DataContext of the clicked RadTreeViewItem.