How does the standard DelegateCommand CanExecuteChanged event fire in Silverlight?

I want to re-run the canExecute functionality from the DelegateCommand after some user changes. How to do it?

+3
source share
1 answer

The CanExecuteChanged event of the ICommand interface must be generated to call the CanExecute method again.

Create the public method "RaiseCanExecuteChanged" in the Commomm deletion that fires the event.

+1
source

All Articles