Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CheckButton Class

A button that supports two states - elevated and depressed. It is possible to prevent the button from receiving focus on click. Multiple buttons can be combined into a radio group, in which only one button is checked at a time.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public class CheckButton :
    SimpleButton

The following members return CheckButton objects:

#Remarks

On clicking the CheckButton control, the button is pressed and remains in this state until the button is clicked again.

CheckButton

The button’s check state is specified by the CheckButton.Checked property. To respond to changes in the button’s state, handle the CheckButton.CheckedChanged event.

Multiple CheckButton controls can be combined into a logical group of mutually exclusive buttons. In this group, only one button can be in the pressed state at one time. Clicking another button unchecks the currently checked button, and checks the clicked button. To combine buttons into a group, use their CheckButton.GroupIndex properties.

To prevent the button from receiving focus on click, use the inherited SimpleButton.AllowFocus property.

#Inheritance

See Also