Table of Contents

Class SelectionModelSelectionChangedEventArgs

Namespace
Avalonia.Controls.Selection
Assembly
Avalonia.Controls.dll
public abstract class SelectionModelSelectionChangedEventArgs : EventArgs
Inheritance
SelectionModelSelectionChangedEventArgs
Derived
Inherited Members

Constructors

SelectionModelSelectionChangedEventArgs()

protected SelectionModelSelectionChangedEventArgs()

Properties

DeselectedIndexes

Gets the indexes of the items that were removed from the selection.

public abstract IReadOnlyList<int> DeselectedIndexes { get; }

Property Value

IReadOnlyList<int>

DeselectedItems

Gets the items that were removed from the selection.

public IReadOnlyList<object?> DeselectedItems { get; }

Property Value

IReadOnlyList<object>

SelectedIndexes

Gets the indexes of the items that were added to the selection.

public abstract IReadOnlyList<int> SelectedIndexes { get; }

Property Value

IReadOnlyList<int>

SelectedItems

Gets the items that were added to the selection.

public IReadOnlyList<object?> SelectedItems { get; }

Property Value

IReadOnlyList<object>

Methods

GetUntypedDeselectedItems()

protected abstract IReadOnlyList<object?> GetUntypedDeselectedItems()

Returns

IReadOnlyList<object>

GetUntypedSelectedItems()

protected abstract IReadOnlyList<object?> GetUntypedSelectedItems()

Returns

IReadOnlyList<object>