DelegateCommandT(ActionT, FuncT, Boolean) Constructor

Class constructor.

Definition

Namespace: Aliquo.Windows.Base
Assembly: Aliquo.Windows (in Aliquo.Windows.dll) Version: 5.0.9179.22654
C#
public DelegateCommand(
	Action<T> execute,
	Func<T, bool> canExecute
)

Parameters

execute  ActionT
Action to be executed by the command.
canExecute  FuncT, Boolean
Function that determines whether the command can be executed.

See Also