我有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); 在同一个虚拟机上使用不同的网络逻辑?