Skip to content

SelectionChangedEventArgs(T)

JaykeBird edited this page Feb 21, 2023 · 6 revisions

Back to home | Back to Reference | View raw text

SelectionChangedEventArgs<T> class

Description

Event arguments for when the current selection of a SelectableCollection is changed.

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SolidShineUi
  SolidShineUi.SelectionChangedEventArgs_1[[SelectionChangedEventArgs< T >]]

  SolidShineUi.CollectionSelectionChangedEventArgs[[CollectionSelectionChangedEventArgs]]
  end
SolidShineUi.CollectionSelectionChangedEventArgs --> SolidShineUi.SelectionChangedEventArgs_1
Loading

Members

Properties

Public properties

Type Name Methods
IList<T> AddedItems
The list of items being added to the selection ("selected").
get
IList<T> RemovedItems
The list of items being removed from the selection ("deselected").
get

Details

Summary

Event arguments for when the current selection of a SelectableCollection is changed.

Generic types

Type Description Constraints
T Represents the type of item in the collection.

Inheritance

Constructors

SelectionChangedEventArgs

public SelectionChangedEventArgs(IList<T> removedItems, IList<T> addedItems)
Arguments
Type Name Description
IList<T> removedItems
IList<T> addedItems

Properties

AddedItems

public IList<T> AddedItems { get; }
Summary

The list of items being added to the selection ("selected").

RemovedItems

public IList<T> RemovedItems { get; }
Summary

The list of items being removed from the selection ("deselected").

Generated with ModularDoc

Clone this wiki locally