Skip to content

CheckBox

ProGraMajster edited this page Mar 28, 2026 · 1 revision

CheckBox

← Back to Control Inventory

Summary

Represents a CheckBox control.

Example

var checkBox = new CheckBox
{
    Text = "Enable option",
    Checked = true
};

Documented Properties

Name Summary
AutoCheck Gets or sets a valud indicating if the CheckBox will respond to mouse clicks.
AutoEllipsis Gets or sets a value indicating if text will be truncated with an ellipsis if it cannot fully fit in the .
AutoSizeMode Allows the control to optionally shrink when is .
Checked Gets or sets a value indicating if the CheckBox is in the checked state.
CheckState Gets or sets the current state of the CheckBox.
DefaultCursor No XML summary yet.
DefaultSize No XML summary yet.
GlyphAlign Gets or sets the alignment of the checkbox glyph on the .
Image Gets or sets the image displayed on the .
ImageAlign Gets or sets the alignment of the image on the .
ImageIndex Gets or sets the index of the image in the to display on the .
ImageKey Gets or sets the key of the image in the to display on the .
ImageList Gets or sets the that contains the image to display on the .
Style No XML summary yet.
TextAlign Gets or sets the alignment of the text on the .
TextImageRelation Gets or sets the alignment of the text relative to the image on the .
ThreeState Gets or sets a value indicating whether the CheckBox will allow three check states rather than two.

Documented Methods

Name Summary
#ctor Initializes a new instance of the CheckBox class.
OnCheckedChanged Raises the CheckedChanged event.
OnCheckStateChanged Raises the CheckStateChanged event.
OnClick No XML summary yet.
OnKeyUp No XML summary yet.
OnPaint No XML summary yet.
ToString No XML summary yet.

Documented Events

Name Summary
CheckedChanged Raised when the value of the Checked property changes.
CheckStateChanged Raised when the value of the CheckState property changes.

Notes

  • This page was generated from the public XML documentation of ModernFormsNext.
  • Base members inherited from Control, ScrollableControl, WindowBase, or other parent types may not all be repeated here.

ModernFormsNext

Clone this wiki locally