wpf-devexpress-dot-xpf-dot-windowsui-dot-appbartogglebutton.md
Gets or sets whether the AppBarToggleButton is checked.
Namespace : DevExpress.Xpf.WindowsUI
Assembly : DevExpress.Xpf.Controls.v25.2.dll
NuGet Package : DevExpress.Wpf.Controls
public bool IsChecked { get; set; }
Public Property IsChecked As Boolean
| Type | Description |
|---|---|
| Boolean |
true, if the AppBarToggleButton is checked; otherwise, false. Default value is false.
|
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