ClassSelectionChangedEventArgs
Class
Provides data for the SelectionChanged events of Telerik Selector controls.
Definition
Namespace:Telerik.UI.Xaml
Assembly:Telerik.WinUI.Controls.dll
Syntax:
cs-api-definition
public class SelectionChangedEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsSelectionChangedEventArgs
Derived Classes:
Inherited Members
Constructors
SelectionChangedEventArgs(RoutedEvent, IList, IList)
Initializes a new instance of the SelectionChangedEventArgs class.
Declaration
cs-api-definition
public SelectionChangedEventArgs(RoutedEvent routedEvent, IList removedItems, IList addedItems)
Parameters
routedEvent
The routed event.
removedItems
The items that were unselected.
addedItems
The items that were selected.
Properties
AddedItems
Gets a list that contains the items that were selected.
Declaration
cs-api-definition
public IList AddedItems { get; }
Property Value
The items that were selected in this event.
RemovedItems
Gets a list that contains the items that were unselected.
Declaration
cs-api-definition
public IList RemovedItems { get; }
Property Value
The items that were unselected in this event.