Skip to main content
All docs
V25.1
  • ON

    DXSwitch.CheckedChanged Event

    Fires after the IsChecked property value changes.

    Namespace: DevExpress.Maui.Core

    Assembly: DevExpress.Maui.Core.dll

    NuGet Package: DevExpress.Maui.Core

    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.
    OldValue Gets the old value.
    See Also