You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 27, 2020. It is now read-only.
Mark Smith edited this page Aug 29, 2016
·
1 revision
IDelegateCommand
The IDelegateCommand interface inherits from ICommand and provides access to the CanExecuteChanged event through a method.
Methods
RaiseCanExecuteChanged : call this to raise the CanExecuteChanged event.
/// <summary>/// Extension of ICommand which exposes a raise execute handler./// </summary>publicinterfaceIDelegateCommand:ICommand{voidRaiseCanExecuteChanged();}