IDelegateCommand - markjulmar/xamu-infrastructure GitHub Wiki
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 ();
}