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