Class
DelegateCommandWrapper

Wraps Command and Action instances in a common execution context.

Definition

Namespace:Telerik.Windows.Controls.Wizard

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

cs-api-definition
public abstract class DelegateCommandWrapper

Inheritance: objectDelegateCommandWrapper

Derived Classes: WizardDelegateCommandWrapper

Constructors

DelegateCommandWrapper(Action)

Initializes a new instance of the DelegateCommandWrapper class.

Declaration

cs-api-definition
protected DelegateCommandWrapper(Action action)

Parameters

action

Action

The action.

DelegateCommandWrapper(Action, int)

Initializes a new instance of the DelegateCommandWrapper class.

Declaration

cs-api-definition
protected DelegateCommandWrapper(Action action, int delay)

Parameters

action

Action

The action.

delay

int

The delay.

DelegateCommandWrapper(ICommand)

Initializes a new instance of the DelegateCommandWrapper class.

Declaration

cs-api-definition
protected DelegateCommandWrapper(ICommand command)

Parameters

command

ICommand

The command.

DelegateCommandWrapper(ICommand, int)

Initializes a new instance of the DelegateCommandWrapper class.

Declaration

cs-api-definition
protected DelegateCommandWrapper(ICommand command, int delay)

Parameters

command

ICommand

The command.

delay

int

The delay.

Properties

Delay

Gets or sets the delay.

Declaration

cs-api-definition
public int Delay { get; protected set; }

Property Value

int

The delay.

ExecuteAction

Gets or sets the execute action.

Declaration

cs-api-definition
protected Action ExecuteAction { get; set; }

Property Value

Action

The execute action.

ExecuteCommand

Gets or sets the execute command.

Declaration

cs-api-definition
protected ICommand ExecuteCommand { get; set; }

Property Value

ICommand

The execute command.

InvocationKey

Gets or sets the invocation key.

Declaration

cs-api-definition
public Key InvocationKey { get; set; }

Property Value

Key

The invocation key.

Methods

GetExecuteAction()

Gets the execute action.

Declaration

cs-api-definition
public virtual Action GetExecuteAction()

Returns

Action