Microsoft的建议是使用LongListSelector.ItemRealized事件,检查它是否是“已实现”列表中的最后一项(或第N个最后一项),如果是,则它将开始获取新记录.在UX方面,最好在SystemTray上显示ProgressIndicator,而不是尝试使用内联微调器来模仿iOS.
原文链接:https://www.f2er.com/windows/372237.htmlLongListSelector.ItemRealized实际上是一个非常有趣的事件,因为当Item已经绑定到虚拟化ListBoxItem的数据时它会触发.这意味着LongListSelector虚拟化逻辑认为它需要准备要在屏幕上显示的FrameworkElement. ListBoxItem可能在屏幕上,也可能不在屏幕上,但这是一个很好的迹象表明它已经到了.
有关代码示例,请参阅@ http://code.msdn.microsoft.com/wpapps/TwitterSearch-Windows-b7fc4e5e
void resultListBox_ItemRealized(object sender,ItemRealizationEventArgs e) { if (!_viewmodel.IsLoading && resultListBox.ItemsSource != null && resultListBox.ItemsSource.Count >= _offsetKnob) { if (e.ItemKind == LongListSelectorItemKind.Item) { if ((e.Container.Content as TwitterSearchResult).Equals(resultListBox.ItemsSource[resultListBox.ItemsSource.Count - _offsetKnob])) { Debug.WriteLine("Searching for {0}",_pageNumber); _viewmodel.LoadPage(_searchTerm,_pageNumber++); } } } }