Skip to main content
.NET 6.0+

DynamicCollection Events

A proxy collection that allows you to filter and sort an original collection without its change.
Name Description
FetchObjects Occurs when the DynamicCollection contents are accessed for the first time, when this collection is reloaded, or its Criteria and Sorting parameters are changed. Handle this event and set the FetchObjectsEventArgs.Objects argument the DynamicCollection contents.
ListChanged Occurs when the collection contents are changed. This event is implemented to support the IBindingList interface. Inherited from DynamicCollectionBase.
Loaded Occurs after the collection was populated with objects. Inherited from DynamicCollectionBase.
See Also