我有两个Pivot
PivotItems
。
在每个PivotItem
我ListView
ItemsSources
。
拳头ListView
具有此约束力:
Items = new IncrementalLoadingCollection<MainPageViewModel, Item>(this, 5);
public async Task<IEnumerable<Item>> GetPagedItemsAsync(int pageIndex, int pageSize, CancellationToken cancellationToken = default(CancellationToken))
{
*here network request*
return itemsList;
}
IncrementalLoadingCollection - 来自UWPCommunityToolkit的集合 如何实现相同的 Items2 = new IncrementalLoadingCollection(this,5); 在同一个VM上使用不同的网络逻辑?