私はPivot
2つ持ってい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 で異なるネットワーク ロジックを使用していますか?