Command Type
A command that optionally hooks into CommandManager.RequerySuggested to automatically trigger CanExecuteChanged whenever the CommandManager detects conditions that might change the output of canExecute. It's necessary to use this feature for command bindings where the CommandParameter is bound to another UI control (e.g. a ListView.SelectedItem).
Constructors
Constructor |
Description
|
Full Usage:
Command(actionToExecute, canExecute, autoRequery)
Parameters:
obj -> unit
canExecute : obj -> bool
autoRequery : bool
Returns: Command
|
|
Instance members
Instance member |
Description
|
Full Usage:
this.CanExecute
Parameters:
obj
Returns: bool
|
|
|
|
Full Usage:
this.Execute
Parameters:
obj
|
|
Full Usage:
this.RaiseCanExecuteChanged
|
|