ComponentOne Basic Library for UWP
C1.UWP Assembly / C1.Xaml Namespace / C1ListBox Class / SelectionChanged Event

In This Topic
    SelectionChanged Event (C1ListBox)
    In This Topic
    Occurs when the selection changed.
    Syntax
    'Declaration
     
    Public Event SelectionChanged As System.EventHandler(Of SelectionChangedEventArgs(Of Integer))
    public event System.EventHandler<SelectionChangedEventArgs<int>> SelectionChanged
    Event Data

    The event handler receives an argument of type SelectionChangedEventArgs<T> containing data related to this event. The following SelectionChangedEventArgs<T> properties provide information specific to this event.

    PropertyDescription
    Gets a collection which contains the items that were selected.  
    Gets a collection which contains the items that were unselected.  
    See Also