Implementing custom CanExecuteChanged event with Commands in WPF
- by ajtp
Hi everybody,
I try to do a custom CanExecuteChanged event for a command button. Inside CanExecuteChanged event I would like to do some stuff when canExecute value change but I don't want to do it by implementing a custom command button class (deriving from Button and Implementing ICommandSource). Also I don't want to do my stuff into CanExecute method.
Any ideas?
Thanks.