-
Notifications
You must be signed in to change notification settings - Fork 0
IDelegateCommand
Mark Smith edited this page Aug 26, 2016
·
2 revisions
The IDelegateCommand interface inherits from ICommand and provides access to the CanExecuteChanged event through a method.
-
RaiseCanExecuteChanged: call this to raise theCanExecuteChangedevent.
/// <summary>
/// Extension of ICommand which exposes a raise execute handler.
/// </summary>
public interface IDelegateCommand : ICommand
{
void RaiseCanExecuteChanged ();
}