In this topic, you learn how to create a list of checkable C1RadialMenuItems that are grouped together so that only one item can be checked at a time.
In XAML
Complete the following steps:
IsCheckable="True" and GroupName="CheckableGroup" to the <c1:C1RadialMenuItem> tag of each C1RadialMenuItem you wish to add to the group of mutually exclusive checkable items.In Code
| Visual Basic |
Copy Code
|
|---|---|
ItemName.IsCheckable = True
|
|
| C# |
Copy Code
|
|---|---|
ItemName.IsCheckable = true;
|
|