Constructor Command
Command()
Initializes a new instance of the Command class.
public Command()
Command(Action)
Initializes a new instance of the Command class with the
specified action.
public Command(Action action)
Parameters
actionAction
Command(Action, Func<bool>?)
Initializes a new instance of the Command class with the
specified action and canExecute.
public Command(Action action, Func<bool>? canExecute)
Parameters
Command(ExecuteDelegate)
Initializes a new instance of the Command class with the
specified executeDelegate.
public Command(Command.ExecuteDelegate executeDelegate)
Parameters
executeDelegateCommand.ExecuteDelegate
Command(ExecuteDelegate, CanExecuteDelegate?)
Initializes a new instance of the Command class with the
specified executeDelegate and canExecuteDelegate.
public Command(Command.ExecuteDelegate executeDelegate, Command.CanExecuteDelegate? canExecuteDelegate)
Parameters
executeDelegateCommand.ExecuteDelegatecanExecuteDelegateCommand.CanExecuteDelegate