Documentation de Dvp.NET. Forum : http://www.developpez.net/forums/f1239/applications/projets/projets-heberges/dvp-net/ [Ceci est une documentation préliminaire, sous réserve de modification.]
Initialise une nouvelle instance de DelegateCommand<T>, avec les méthodes spécifiées pour Execute et CanExecute
Espace de nom : Developpez.Dotnet.Windows.InputAssembly : Developpez.Dotnet.Windows (dans Developpez.Dotnet.Windows.dll) Version: 0.6.0.0 (0.6.0.0)
Syntaxe
C# |
---|
public DelegateCommand(
Action<T> executeMethod,
Func<T, bool> canExecuteMethod
) |
Visual Basic (Déclaration) |
---|
Public Sub New ( _
executeMethod As Action(Of T), _
canExecuteMethod As Func(Of T, Boolean) _
) |
Visual C++ |
---|
public:
DelegateCommand(
Action<T>^ executeMethod,
Func<T, bool>^ canExecuteMethod
) |
Paramètres
- executeMethod
- Type: System..::..Action<(Of <(<'T>)>)>
Méthode à exécuter quand la commande est invoquée
- canExecuteMethod
- Type: System..::..Func<(Of <(<'T, Boolean>)>)>
Méthode à exécuter pour vérifier si la commande peut être exécutée
Voir aussi