New to Telerik UI for WPFStart a free 30-day trial

Interface for radial menu item that is used to populate ItemsSource.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

C#
public interface IRadialMenuItem

Derived Classes: RadRadialMenuItem

Properties

Gets or sets whether a user can select the IRadialMenuItem.

C#
bool CanUserSelect { get; set; }

Gets or sets the ICommand associated the current item.

C#
ICommand Command { get; set; }

Gets or sets command parameter that will be used by the Command associated with the IRadialMenuItem.

C#
object CommandParameter { get; set; }

CommandTarget

UIElement

Gets or sets command target that will be used by the Command associated with the IRadialMenuItem.

C#
UIElement CommandTarget { get; set; }

Gets or sets the Brush value that defines the background of the IRadialMenuItem.

C#
Brush ContentSectorBackground { get; set; }

Gets or sets a value specifying the name of the group this IRadialMenuItem belongs to.

C#
string GroupName { get; set; }

Gets or sets a value specifying the visual representation of the title of the IRadialMenuItem.

C#
object Header { get; set; }

Gets or sets a value specifying the visual representation of the icon associated with the IRadialMenuItem.

C#
object IconContent { get; set; }

Gets or sets a value indicating whether the IRadialMenuItem is selected.

C#
bool IsSelected { get; set; }

Gets or sets the ItemsSource of the current IRadialMenuItem.

C#
IEnumerable<IRadialMenuItem> ItemsSource { get; set; }

Gets or sets the tooltip content of the current IRadialMenuItem.

C#
object ToolTipContent { get; set; }