Xceed Toolkit for .NET Maui v2.0 Documentation
Xceed.Maui.Toolkit Assembly / Xceed.Maui.Toolkit Namespace / ToggleSwitch Class / IsCheckedValueChanged Event


In This Topic
    IsCheckedValueChanged Event
    In This Topic
    The event that is raised when the ToggleSwitch changes state.
    Syntax
    'Declaration
     
    
    Public Event IsCheckedValueChanged As EventHandler(Of CheckedChangedEventArgs)
    'Usage
     
    
    Dim instance As ToggleSwitch
    Dim handler As EventHandler(Of CheckedChangedEventArgs)
     
    AddHandler instance.IsCheckedValueChanged, handler
    public event EventHandler<CheckedChangedEventArgs> IsCheckedValueChanged
    Event Data

    The event handler receives an argument of type CheckedChangedEventArgs containing data related to this event. The following CheckedChangedEventArgs properties provide information specific to this event.

    PropertyDescription
     
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also