Skip to main content
A newer version of this page is available. .

DelegateCommand<T> Class

A command that calls your parameterized delegates when Execute and CanExecute logic is invoked on the command.

Namespace: DevExpress.Mvvm

Assembly: DevExpress.Mvvm.v19.1.dll

Declaration

public class DelegateCommand<T> :
    DelegateCommandBase<T>

Type Parameters

Name
T

Remarks

The delegates to be called when Execute and CanExecute logic is invoked on the command can be specified via the DelegateCommand<T>‘s constructor.

See Delegate Commands to learn more.

Inheritance

Object
DevExpress.Mvvm.CommandBase
CommandBase<T>
DevExpress.Mvvm.DelegateCommandBase<T>
DelegateCommand<T>
See Also