Represents a predefined command that aggregates a custom ICommand implementation, which may be used to perform additional action over the default implementation.
Definition
Namespace:Telerik.Windows.Controls.RadialMenu.Commands
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
public sealed class RadialMenuUserCommand : RadialMenuCommand, ICommand
Inheritance: objectAttachableObject<RadRadialMenu>ControlCommandBase<RadRadialMenu>RadialMenuCommandRadialMenuUserCommand
Implements:
Inherited Members
Constructors
public RadialMenuUserCommand()
Fields
CommandProperty
DependencyProperty
Identifies the Command dependency property.
public static readonly DependencyProperty CommandProperty
EnableDefaultCommandProperty
DependencyProperty
Identifies the EnableDefaultCommand dependency property.
public static readonly DependencyProperty EnableDefaultCommandProperty
Properties
Gets or sets the ICommand implementation that is used to perform the custom logic associated with this command.
public ICommand Command { get; set; }
Gets or sets a value indicating whether the default command implementation, related to the current CommandId, should be executed.
public bool EnableDefaultCommand { get; set; }
The default value is True.
Methods
Performs the core action given the provided parameter.
public override void Execute(object parameter)
The command parameter.
Overrides: