--- title: "CheckBox Control Overview" ms.date: "03/30/2017" f1_keywords: - "CheckBox" helpviewer_keywords: - "CheckBox control [Windows Forms], about CheckBox control" - "data binding [Windows Forms], checkbox controls" - "check boxes [Windows Forms], about check boxes" ms.assetid: 085a4e0b-9046-473f-b141-d0edddfb2ebb --- # CheckBox Control Overview (Windows Forms) The Windows Forms control indicates whether a particular condition is on or off. It is commonly used to present a Yes/No or True/False selection to the user. You can use check box controls in groups to display multiple choices from which the user can select one or more. The check box control is similar to the radio button control in that each is used to indicate a selection that is made by the user. They differ in that only one radio button in a group can be selected at a time. With the check box control, however, any number of check boxes may be selected. A check box may be connected to elements in a database using simple data binding. Multiple check boxes may be grouped using the control. This is useful for visual appearance and also for user interface design, since grouped controls can be moved around together on the form designer. For more information, see [Windows Forms Data Binding](../windows-forms-data-binding.md) and [GroupBox Control](groupbox-control-windows-forms.md). The control has two important properties, and . The property returns either `true` or `false`. The property returns either or ; or, if the property is set to `true`, may also return . In the indeterminate state, the box is displayed with a dimmed appearance to indicate the option is unavailable. ## See also - - [How to: Set Options with Windows Forms CheckBox Controls](how-to-set-options-with-windows-forms-checkbox-controls.md) - [How to: Respond to Windows Forms CheckBox Clicks](how-to-respond-to-windows-forms-checkbox-clicks.md) - [CheckBox Control](checkbox-control-windows-forms.md)