Is there a way I can attach a handler (callback) in buttons of my control (which eventually execute the ICommand
) so that my control knows when a command execution is completed?
Is there a way to get a callback when a Button completes execution of ICommand?
2.2k views Asked by Manish Basantani At
1
You can create abstract CallbackableCommand that would raise callback method.
Inherit your command from CallbackableCommand and override CanExecute, CanExecuteChanged and ExecuteImpl(instead of Execute)
Own element to specify
CommandExecuted
event:Edit: In your control specify
Callbackable.CommandExecuted
eventExecuted event handler: