Implement ISupportIncrementalLoading in WPF and WP8

WinRT applications have an easy way to add virtualization to a ListView control. If a collection implements ISupportIncrementalLoading, it can be used to partially load as many items asynchronously.

I am trying to solve this problem on other platforms: WPF and WP8. This interface is not available, but I'm wondering if there is an implementation that exactly matches the copy of WinRT.

+5
source share

All Articles