Skip to main content
Bar

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

BarSplitCheckItem.IsChecked Property

Gets or sets whether the item is in the pushed state. This is a dependency property.

Namespace: DevExpress.Xpf.Bars

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public bool? IsChecked { get; set; }

#Property Value

Type Description
Nullable<Boolean>

true if the item’s check button is in the pushed state; false if the item’s check button is in the normal state; null if the button’s state is indeterminate.

#Remarks

Use the IsChecked property to specify the check state for the item’s check button. By default, two states are supported - Checked and Unchecked. If the BarSplitCheckItem.IsThreeState option is enabled, the item’s check button supports three states: Checked, Unchecked and Indeterminate.

Changing the IsChecked property fires the BarSplitCheckItem.CheckedChanged event.

See Also