Class ControlCommandBase<T>
Represents a command abstraction that is associated with a particular System.Windows.Input.ICommand instance.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public abstract class ControlCommandBase<T> : AttachableObject<T>, ICommand where T : RadRadialMenu
Type Parameters
T
|
Constructors
ControlCommandBase()
Declaration
protected ControlCommandBase()
Methods
CanExecute(Object)
Determines whether the command can be executed against the provided parameter.
Declaration
public virtual bool CanExecute(object parameter)
Parameters
System.Object
parameter
The command parameter. |
Returns
System.Boolean
The Default value is |
Execute(Object)
Performs the core action given the provided parameter.
Declaration
public virtual void Execute(object parameter)
Parameters
System.Object
parameter
The command parameter. |
OnCanExecuteChanged(EventArgs)
Raises the CanExecuteChanged event.
Declaration
protected virtual void OnCanExecuteChanged(EventArgs e)
Parameters
System.EventArgs
e
|
Events
CanExecuteChanged
Occurs when the CanExecute state of the command changes.
Declaration
public event EventHandler CanExecuteChanged
Event Type
System.EventHandler
|