Defines a command that implements ICommand which passes CanExecute and Executed as delegated method. The DelegateCommand is commonly used in M-V-VM pattern application development.
Object Model
Syntax
Visual Basic (Declaration) | |
---|
Public Class DelegateCommand(Of T) |
C# | |
---|
public class DelegateCommand<T> |
Delphi | |
---|
public class DelegateCommand |
JScript | |
---|
JScript does not support Generics. |
Managed Extensions for C++ | |
---|
public __gc class DelegateCommand<T> |
C++/CLI | |
---|
generic<typename T>
public ref class DelegateCommand |
Type Parameters
- T
- Type of the parameter passed to the delegates
Inheritance Hierarchy
System.Object
Intersoft.Client.Framework.Input.DelegateCommand<T>
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also