Interface
IRadialMenuItem

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

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

cs-api-definition
public interface IRadialMenuItem

Properties

CanUserSelect

Gets or sets whether a user can select the IRadialMenuItem.

Declaration

cs-api-definition
bool CanUserSelect { get; set; }

Property Value

bool

Command

Gets or sets the ICommand associated the current item.

Declaration

cs-api-definition
ICommand Command { get; set; }

Property Value

ICommand

CommandParameter

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

Declaration

cs-api-definition
object CommandParameter { get; set; }

Property Value

object

CommandTarget

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

Declaration

cs-api-definition
UIElement CommandTarget { get; set; }

Property Value

UIElement

ContentSectorBackground

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

Declaration

cs-api-definition
Brush ContentSectorBackground { get; set; }

Property Value

Brush

GroupName

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

Declaration

cs-api-definition
string GroupName { get; set; }

Property Value

string

Header

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

Declaration

cs-api-definition
object Header { get; set; }

Property Value

object

IconContent

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

Declaration

cs-api-definition
object IconContent { get; set; }

Property Value

object

IsSelected

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

Declaration

cs-api-definition
bool IsSelected { get; set; }

Property Value

bool

ItemsSource

Gets or sets the ItemsSource of the current IRadialMenuItem.

Declaration

cs-api-definition
IEnumerable<IRadialMenuItem> ItemsSource { get; set; }

Property Value

IEnumerable<IRadialMenuItem>

ToolTipContent

Gets or sets the tooltip content of the current IRadialMenuItem.

Declaration

cs-api-definition
object ToolTipContent { get; set; }

Property Value

object