Class DelegateCommandWrapper
Inheritance
System.Object
DelegateCommandWrapper
Namespace: Telerik.UI.Xaml.Controls.Data
Assembly: Telerik.WinUI.Controls.dll
Syntax
public abstract class DelegateCommandWrapper : Object
Constructors
DelegateCommandWrapper(Action)
Declaration
public DelegateCommandWrapper(Action action)
Parameters
|
System.Action
action
|
DelegateCommandWrapper(Action, Int32)
Declaration
public DelegateCommandWrapper(Action action, int delay)
Parameters
|
System.Action
action
|
|
System.Int32
delay
|
DelegateCommandWrapper(ICommand)
Declaration
public DelegateCommandWrapper(ICommand command)
Parameters
|
System.Windows.Input.ICommand
command
|
DelegateCommandWrapper(ICommand, Int32)
Declaration
public DelegateCommandWrapper(ICommand command, int delay)
Parameters
|
System.Windows.Input.ICommand
command
|
|
System.Int32
delay
|
Properties
Delay
Declaration
public int Delay { get; protected set; }
Property Value
|
System.Int32
|
ExecuteAction
Declaration
protected Action ExecuteAction { get; set; }
Property Value
|
System.Action
|
ExecuteCommand
Declaration
protected ICommand ExecuteCommand { get; set; }
Property Value
|
System.Windows.Input.ICommand
|
InvocationKey
Declaration
public VirtualKey InvocationKey { get; set; }
Property Value
|
Windows.System.VirtualKey
|
Methods
GetExecuteAction()
Declaration
public virtual Action GetExecuteAction()
Returns
|
System.Action
|