Skip to main content

IDelegateCommand Members

An interface that specifies a command delegate.

Methods

Name Description
CanExecute(Object) Defines the method that determines whether the command can execute in its current state. Inherited from ICommand.
Execute(Object) Defines the method to be called when the command is invoked. Inherited from ICommand.
RaiseCanExecuteChanged() Raises the CanExecuteChanged event. You can use this method to notify a visual element about a command’s CanExecute(T) state changes.

Events

Name Description
CanExecuteChanged Occurs when changes occur that affect whether or not the command should execute. Inherited from ICommand.
See Also