I want to re-trigger the canExecute functionality from a DelegateCommand after some modifications have been made by the user. How do I do this?
Asked
Active
Viewed 490 times
1 Answers
1
The event CanExecuteChanged of the interface ICommand must be raised to re-trigger call of the CanExecute method.
Create a public method "RaiseCanExecuteChanged" in the DelegateCommand which fires the event.

Bernhard
- 195
- 1
- 11