0

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

4

0 に答える 0