Skip to main content

ToolbarToggleButton.CheckedChanged Event

Fires after the ToolbarToggleButton.IsChecked property is changed.

Namespace: DevExpress.Maui.Controls

Assembly: DevExpress.Maui.Controls.dll

NuGet Package: DevExpress.Maui.Controls

Declaration

public event EventHandler<ValueChangedEventArgs<bool>> CheckedChanged

Event Data

The CheckedChanged event's data class is ValueChangedEventArgs<Boolean>. The following properties provide information specific to this event:

Property Description
NewValue Gets the new value of a property.
OldValue Gets the old value of a property.

Remarks

Use the IsChecked property to obtain the new value.

See Also