Class DesktopAlertMenuItem
Represents an item inside of the MenuItemsSource.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public class DesktopAlertMenuItem
Constructors
DesktopAlertMenuItem()
Initializes a new instance of the DesktopAlertMenuItem class.
Declaration
public DesktopAlertMenuItem()
Properties
Command
Gets or sets the command that will be executed when the command source is invoked.
Declaration
public ICommand Command { get; set; }
Property Value
System.Windows.Input.ICommand
|
CommandParameter
Represents a user defined data value that can be passed to the command when it is executed.
Declaration
public object CommandParameter { get; set; }
Property Value
System.Object
|
Header
Gets or sets a string value that represents the header of the menu item.
Declaration
public string Header { get; set; }
Property Value
System.String
|
IconUrl
Gets or sets a path to the icon image of the menu item.
Declaration
public Uri IconUrl { get; set; }
Property Value
System.Uri
|
IsCheckable
Gets or sets a value that indicates whether the menu item can be checked.
Declaration
public bool IsCheckable { get; set; }
Property Value
System.Boolean
|
IsChecked
Gets or sets a value that indicates whether the menu item a checked.
Declaration
public bool IsChecked { get; set; }
Property Value
System.Boolean
|
IsSeparator
Gets or sets a value indicating whether the menu item is a separator.
Declaration
public bool IsSeparator { get; set; }
Property Value
System.Boolean
|
ItemsSource
Represents a collection of sub DesktopAlertMenuItem objects.
Declaration
public IEnumerable<DesktopAlertMenuItem> ItemsSource { get; set; }
Property Value
System.Collections.Generic.IEnumerable<DesktopAlertMenuItem>
|