ComponentOne Basic Library for WPF and Silverlight
SelectionChanged Event (C1ListBox)


C1.WPF Namespace > C1ListBox Class : SelectionChanged Event
Occurs when the selection changed.
Syntax
'Declaration
 
Public Event SelectionChanged As System.EventHandler(Of SelectionChangedEventArgs(Of Integer))
'Usage
 
Dim instance As C1ListBox
Dim handler As System.EventHandler(Of SelectionChangedEventArgs(Of Integer))
 
AddHandler instance.SelectionChanged, handler
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