Interface IRadialMenuItem
Interface for radial menu item that is used to populate ItemsSource.
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public interface IRadialMenuItem
Properties
CanUserSelect
Gets or sets whether a user can select the IRadialMenuItem.
Declaration
bool CanUserSelect { get; set; }
Property Value
System.Boolean
|
Command
Gets or sets the System.Windows.Input.ICommand associated the current item.
Declaration
ICommand Command { get; set; }
Property Value
System.Windows.Input.ICommand
|
CommandParameter
Gets or sets command parameter that will be used by the Command associated with the IRadialMenuItem.
Declaration
object CommandParameter { get; set; }
Property Value
System.Object
|
CommandTarget
Gets or sets command target that will be used by the Command associated with the IRadialMenuItem.
Declaration
UIElement CommandTarget { get; set; }
Property Value
System.Windows.UIElement
|
ContentSectorBackground
Gets or sets the System.Windows.Media.Brush value that defines the background of the IRadialMenuItem.
Declaration
Brush ContentSectorBackground { get; set; }
Property Value
System.Windows.Media.Brush
|
GroupName
Gets or sets a value specifying the name of the group this IRadialMenuItem belongs to.
Declaration
string GroupName { get; set; }
Property Value
System.String
|
Header
Gets or sets a value specifying the visual representation of the title of the IRadialMenuItem.
Declaration
object Header { get; set; }
Property Value
System.Object
|
IconContent
Gets or sets a value specifying the visual representation of the icon associated with the IRadialMenuItem.
Declaration
object IconContent { get; set; }
Property Value
System.Object
|
IsSelected
Gets or sets a value indicating whether the IRadialMenuItem is selected.
Declaration
bool IsSelected { get; set; }
Property Value
System.Boolean
|
ItemsSource
Gets or sets the ItemsSource of the current IRadialMenuItem.
Declaration
IEnumerable<IRadialMenuItem> ItemsSource { get; set; }
Property Value
System.Collections.Generic.IEnumerable<IRadialMenuItem>
|
ToolTipContent
Gets or sets the tooltip content of the current IRadialMenuItem.
Declaration
object ToolTipContent { get; set; }
Property Value
System.Object
|