Windows.UI.Xaml.Data.ICollectionView
July 6, 2022 ยท View on GitHub
-description
Enables collections to support current record management, grouping, and incremental loading (data virtualization).
-remarks
ICollectionView is an interface used to represent a collection. It serves to maintain currency for properties like item selection.
To implement custom behavior for selection currency in your data source, your data source should implement ICollectionViewFactory instead of implementing ICollectionView directly. You can set the CollectionViewSource.Source property to an ICollectionViewFactory, but if you set it to an ICollectionView, it will throw an exception.
The CollectionGroups property is of type IObservableVector