Skip to main content

IDXObservableCollection.ItemsAdded Event

Occurs after new items are added to the collection.

Namespace: DevExpress.Maui.Mvvm

Assembly: DevExpress.Maui.Mvvm.dll

NuGet Package: DevExpress.Maui.Mvvm

Declaration

event DXEventHandler<IDXObservableCollectionChangedEventArgs> ItemsAdded

Event Data

The ItemsAdded event's data class is IDXObservableCollectionChangedEventArgs. The following properties provide information specific to this event:

Property Description
Count Gets the number of modified items.
Index Gets the index of the first changed item.
Items Gets the list of modified items.
See Also