ISupportIncrementalLoading inside ScrollViewer not supported?
I have a GridView with GridView.ItemsSource set to a collection that implements ISupportIncrementalLoading . By implementing this, I am aiming to improve load time and UI responsiveness by only loading items that are needed for display. The framework handles this for me and it works great. <GridView ItemsSource="{Binding Items}"> <GridView.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding Text}"/> </DataTemplate> </GridView.ItemTemplate> </GridView> However , if I wrap the above XAML in a ScrollViewer like the following, the entire collection of Items loads as though the GridView is