Skip to main content

CheckButton() Constructor

Initializes a new instance of the CheckButton class.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v26.1.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public CheckButton()

Remarks

The following code snippet creates a CheckButton with default settings and adds it to a form:

using DevExpress.XtraEditors;

CheckButton checkButton = new CheckButton();
checkButton.Text = "Toggle Option";
this.Controls.Add(checkButton);
See Also