IDelegateCommand - markjulmar/xamu-infrastructure GitHub Wiki

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>
public interface IDelegateCommand : ICommand
{
    void RaiseCanExecuteChanged ();
}
⚠️ **GitHub.com Fallback** ⚠️