Class ObservableItemCollectionChangedEventArgs<T>
Provides data for events that occur when items are added to or removed from an ObservableItemCollection<T>. This class extends System.EventArgs to include information about the affected item and its index.
Inheritance
Namespace: Telerik.Maui
Assembly: Telerik.Maui.Core.dll
Syntax
public class ObservableItemCollectionChangedEventArgs<T> : EventArgs
Type Parameters
T
The type of the item that was added or removed. |
Fields
Index
The index at which the item was added or from which it was removed.
Declaration
public readonly int Index
Field Value
System.Int32
|
Item
The item that was added to or removed from the collection.
Declaration
public readonly T Item
Field Value
T
|