Skip to content
This repository has been archived by the owner on Aug 27, 2020. It is now read-only.

IDelegateCommand

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>
public interface IDelegateCommand : ICommand
{
    void RaiseCanExecuteChanged ();
}