UWP Windows 10.
Tell ListView
how to implement virtualization for a ListView
with binding to a CollectionView
whose data source is the ObservableCollection
grouped list?
Made a source of this type:
public class TransactionRepository : ObservableCollection<GroupInfoList>, ISupportIncrementalLoading...
I implemented everything by examples, data is not displayed at all. Perhaps this approach is simply not applicable to the CollectionView
?
What are the options?
ICollectionView
, in theory? - VladD