Class
SelectionChangedEventArgs

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: PropertyGridFieldEventArgsRadSelectionChangedEventArgs

Inherited Members RadRoutedEventArgs.InvokeEventHandler(Delegate, object)RadRoutedEventArgs.OnSetSource(object)RadRoutedEventArgs.RoutedEventRadRoutedEventArgs.SourceRadRoutedEventArgs.HandledRadRoutedEventArgs.OriginalSource

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

RoutedEvent

The routed event.

removedItems

IList

The items that were unselected.

addedItems

IList

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

IList

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

IList

The items that were unselected in this event.