Xceed Toolkit for .NET Maui v2.0 Documentation
Xceed.Maui.Toolkit Assembly / Xceed.Maui.Toolkit Namespace / AutoCompleteTextBox Class / SelectionChanged Event


In This Topic
    SelectionChanged Event (AutoCompleteTextBox)
    In This Topic
    This event is raised when a value from the AutoCompleteTextBox's Popup is selected & said Popup closes. 
    Syntax
    'Declaration
     
    
    Public Event SelectionChanged As EventHandler(Of SelectionChangedEventArgs)
    'Usage
     
    
    Dim instance As AutoCompleteTextBox
    Dim handler As EventHandler(Of SelectionChangedEventArgs)
     
    AddHandler instance.SelectionChanged, handler
    public event EventHandler<SelectionChangedEventArgs> SelectionChanged
    Event Data

    The event handler receives an argument of type SelectionChangedEventArgs containing data related to this event. The following SelectionChangedEventArgs 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