Click or drag to resize

CheckBox Class

Control to show a two or three state check box
Inheritance Hierarchy

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public class CheckBox : TextControl

The CheckBox type exposes the following members.

Constructors
  NameDescription
Public methodCheckBox
Initializes a new instance of the CheckBox class
Top
Properties
  NameDescription
Public propertyChecked
Gets or sets the checked state
Public propertyCheckedBinding
Gets a binding for the Checked property
Public propertyThreeState
Gets or sets a value indicating whether this CheckBox allows three states: true, false, or null
Top
Methods
  NameDescription
Protected methodGetCallback
Gets an instance of an object used to perform callbacks to the widget from handler implementations
(Overrides TextControlGetCallback.)
Protected methodOnCheckedChanged
Raises the CheckedChanged event.
Top
Events
  NameDescription
Public eventCheckedChanged
Occurs when Checked property is changed by the user
Top
Remarks
Two state is either checked (true) or unchecked (false). Three state check box can also have a null value.
See Also