Class DelegateCommandWrapper
Wraps Command and Action instances in a common execution context.
Inheritance
Namespace: Telerik.Windows.Controls.Wizard
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public abstract class DelegateCommandWrapper : Object
Constructors
DelegateCommandWrapper(Action)
Initializes a new instance of the Delegate
Declaration
protected DelegateCommandWrapper(Action action)
Parameters
System. The action. |
DelegateCommandWrapper(Action, Int32)
Initializes a new instance of the Delegate
Declaration
protected DelegateCommandWrapper(Action action, int delay)
Parameters
System. The action. |
System. The delay. |
DelegateCommandWrapper(ICommand)
Initializes a new instance of the Delegate
Declaration
protected DelegateCommandWrapper(ICommand command)
Parameters
System. The command. |
DelegateCommandWrapper(ICommand, Int32)
Initializes a new instance of the Delegate
Declaration
protected DelegateCommandWrapper(ICommand command, int delay)
Parameters
System. The command. |
System. The delay. |
Properties
Delay
Gets or sets the delay.
Declaration
public int Delay { get; protected set; }
Property Value
System. The delay. |
ExecuteAction
Gets or sets the execute action.
Declaration
protected Action ExecuteAction { get; set; }
Property Value
System. The execute action. |
ExecuteCommand
Gets or sets the execute command.
Declaration
protected ICommand ExecuteCommand { get; set; }
Property Value
System. The execute command. |
InvocationKey
Gets or sets the invocation key.
Declaration
public Key InvocationKey { get; set; }
Property Value
System. The invocation key. |
Methods
GetExecuteAction()
Gets the execute action.
Declaration
public virtual Action GetExecuteAction()
Returns
System.
|