我有一个ObservableCollection< T>它实现了ISupportIncrementalLoading接口.
原文链接:https://www.f2er.com/windows/364415.html当我将此集合绑定到普通的gridview时,一切正常.
但是当我将ItemsPanel模板更改为VariableSizedWrapGrid时.增量加载不再起作用.
有效的Xaml:
<ItemsPanelTemplate> <VirtualizingStackPanel Orientation="Horizontal"/> </ItemsPanelTemplate>
Xaml不起作用:
<ItemsPanelTemplate> <VariableSizedWrapGrid Orientation="Vertical" ItemHeight="250" ItemWidth="250" Margin="0,80,0"/> </ItemsPanelTemplate>
我还找到了this& this.声明VariableSizedWrapGrid不支持ISupportIncreMetalLoading.