Class SelectionChangedEventArgs
Provides data for the Telerik.Windows.Controls.Selector.SelectionChanged event.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public class SelectionChangedEventArgs : RadRoutedEventArgs
Constructors
SelectionChangedEventArgs(RoutedEvent, IList, IList)
Initializes a new instance of the SelectionChangedEventArgs class.
Declaration
public SelectionChangedEventArgs(RoutedEvent routedEvent, IList removedItems, IList addedItems)
Parameters
RoutedEvent
routedEvent
The routed event. |
System.Collections.IList
removedItems
The items that were unselected. |
System.Collections.IList
addedItems
The items that were selected. |
Properties
AddedItems
Gets a list that contains the items that were selected.
Declaration
public IList AddedItems { get; }
Property Value
System.Collections.IList
The items that were selected in this event. |
RemovedItems
Gets a list that contains the items that were unselected.
Declaration
public IList RemovedItems { get; }
Property Value
System.Collections.IList
The items that were unselected in this event. |