Click or drag to resize

RelayCommand Constructor (Action, FuncBoolean)

Creates a new command.

Namespace:  Micros.PosCore.GuestProfile.MvvmTools
Assembly:  PosCore (in PosCore.dll) Version: 18.2
Syntax
C#
public RelayCommand(
	Action execute,
	Func<bool> canExecute
)

Parameters

execute
Type: SystemAction
The execution logic.
canExecute
Type: SystemFuncBoolean
The execution status logic.
See Also