Click or drag to resize

RelayCommand Constructor (Action)

Initializes a new instance of the RelayCommand class.

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public RelayCommand(
	Action execute
)

Parameters

execute
Type: SystemAction
Delegate to execute the command.
Remarks
The CanExecute(Object) will always return true.
See Also