Class SelectionChangedEventArgs
Provides data for the SelectionChanged event.
public class SelectionChangedEventArgs : RoutedEventArgs
- Inheritance
-
SelectionChangedEventArgs
- Inherited Members
Constructors
SelectionChangedEventArgs(RoutedEvent, IList, IList)
Initializes a new instance of the SelectionChangedEventArgs class.
public SelectionChangedEventArgs(RoutedEvent routedEvent, IList removedItems, IList addedItems)
Parameters
routedEvent
RoutedEventThe event being raised.
removedItems
IListThe items removed from the selection.
addedItems
IListThe items added to the selection.
Properties
AddedItems
Gets the items that were added to the selection.
public IList AddedItems { get; }
Property Value
RemovedItems
Gets the items that were removed from the selection.
public IList RemovedItems { get; }