Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing ISupportIncrementalLoading in WPF and WP8

WinRT applications have a simple way to add virtualization to ListView control. If a collection implements ISupportIncrementalLoading, it can be used for partial async loading of large number of items.

I am trying to solve this task on other platforms: WPF and WP8. This interface is not available there but I wonder if there is an implementation that matches closely WinRT counterpart.

like image 956
Vagif Abilov Avatar asked Apr 05 '13 19:04

Vagif Abilov


1 Answers

Might be helpful :

data virtualization or the lazy loading of data to a ListView

Data virtualization

like image 142
Farhan Ghumra Avatar answered Oct 22 '22 19:10

Farhan Ghumra