Use RadContextMenu within RadGridView
This tutorial will demonstrate how to use a RadContextMenu to add functionality to the RadGridView control. The article is divided into the following sections:
- Attach RadContextMenu to RadGridView
- Configure the ItemContainerStyle for RadContextMenu
- Display Different Menu Items Depending on Which RadGridView Part Is Clicked
- Handle the Menu Items' Clicks
You can have a look at the Row Context Menu and Header Context Menu demos which can be found in the RadGridView section of the WPF Controls Examples.
To start, first define a RadGridView, which will display a list of Employee objects.
Example 1: RadGridView definition
Attach RadContextMenu to RadGridView
In order to add a RadContextMenu to the RadGridView control, you have to just set the RadContextMenu.ContextMenu attached property.
Example 2: Add RadContextMenu to RadGridView
Configure the ItemContainerStyle for RadContextMenu
The RadContextMenu will be populated with dynamic data, so you have to prepare an ItemContainerStyle that will display this data. The business object that will represent the data is defined in Example 3.
Example 3: The MenuItem class
Here is the ItemContainerStyle:
Example 4: The ItemContainerStyle
Display Different Menu Items Depending on Which RadGridView Part Is Clicked
The RadContextMenu should display different items, depending on which part of it is clicked. Here are the possible scenarios along with the list of items we will show for each one:
-
GridView Header
-
Sort
Ascending
Descending
None
Move Left
Move Right
-
-
GridView Row
Add
Edit
Delete
-
Anything Else
Add
Edit (Disabled)
Delete (Disabled)
As you can see, two data sources have to be provided for the RadContextMenu - one when a header is clicked and a separate one when a row is clicked. For that purpose, create two collection fields in your UserControl as demonstrated in Example 5.
Example 5: The two MenuItem collections
Now, initialize them by using methods similar to the ones demonstrated in Example 6.
Example 6: The helper methods to populate the RadContextMenu
Next you will need two properties that will return the clicked row and the clicked header. Define them in your UserControl as follows by using the GetClickedElement method.
Example 7: The ClickedHeader and ClickedRow helper properties
The last thing to do is to attach an event handler to the Opened event of the RadContextMenu. There you can implement the logic around changing the ItemsSource of the RadContextMenu depending on the clicked element.
Example 8: Attach the Opened event handler
Example 9: The Opened event handler definition
The result once you click on a row or header is illustrated in Figure 1.
Figure 1: RadContextMenu shown when clicking on row and header respectively
Handle the Menu Items' Clicks
The last thing to do in this tutorial is to handle the menu items' actions. For this purpose, attach an event handler to the ItemClick event of the RadContextMenu. In it, get the clicked item and, depending on its value, execute the appropriate code.