Command Module
A module to Create System.Windows.Input.ICommand instances
Types
Type | Description |
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). |
Functions and values
Function or value |
Description
|
Full Usage:
mkCmd canExcecute actionToExecute
Parameters:
obj -> bool
actionToExecute : obj -> unit
Returns: ICommand
|
creates a ICommand. provide function for canExcecute and actionToExecute hooks into CommandManager.RequerySuggested to automatically trigger CanExecuteChanged whenever the CommandManager detects conditions that might change the output of canExecute.
|
|