-
Notifications
You must be signed in to change notification settings - Fork 3
SelectionChangedEventArgs(T)
JaykeBird edited this page Feb 21, 2023
·
6 revisions
Back to home | Back to Reference | View raw text
Event arguments for when the current selection of a SelectableCollection is changed.
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
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 |
Event arguments for when the current selection of a SelectableCollection is changed.
Type | Description | Constraints |
---|---|---|
T |
Represents the type of item in the collection. |
public SelectionChangedEventArgs(IList<T> removedItems, IList<T> addedItems)
Type | Name | Description |
---|---|---|
IList <T > |
removedItems | |
IList <T > |
addedItems |
public IList<T> AddedItems { get; }
The list of items being added to the selection ("selected").
public IList<T> RemovedItems { get; }
The list of items being removed from the selection ("deselected").
Generated with ModularDoc