Method | Description | |
---|---|---|
CanExecute ( object _objParam ) : bool |
Able to execute.
|
|
DelegateCommand ( System.Action _aMethodToExecute ) : System |
Constructor with function to call.
|
|
Execute ( object _objParam ) : void |
Execute the command from the constructor.
|
public CanExecute ( object _objParam ) : bool | ||
_objParam | object | Unused from ICommand. |
return | bool |
public DelegateCommand ( System.Action _aMethodToExecute ) : System | ||
_aMethodToExecute | System.Action | Function to call when command is used. |
return | System |
public Execute ( object _objParam ) : void | ||
_objParam | object | Unused from ICommand. |
return | void |