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

AppBarToggleButton.IsChecked Property

Gets or sets whether the AppBarToggleButton is checked.

Namespace: DevExpress.Xpf.WindowsUI

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

NuGet Package: DevExpress.Wpf.Controls

#Declaration

public bool IsChecked { get; set; }

#Property Value

Type Description
Boolean

true, if the AppBarToggleButton is checked; otherwise, false. Default value is false.

#Remarks

The AppBarToggleButton is a button that supports two states: checked and unchecked, using the IsChecked property. The AppBarToggleButton is typically used to represent Boolean options. When an end-user toggles the AppBarToggleButton, its IsChecked property changes accordingly. To respond to a button click, handle the Click, AppBarToggleButton.Checked and AppBarToggleButton.Unchecked events.

You can also combine the AppBarToggleButton objects into groups of mutually exclusive toggle buttons using the AppBarToggleButton.GroupName property.

See Also