Detecting scrolling to the end of listbox

孤者浪人 提交于 2019-12-08 08:32:59

问题


I have a large list of items, so i should request corresponding page from the server. How to catch an event, when user scrolls to the end of the listbox, so i can request another page?


回答1:


The exact solutions you are looking for: http://danielvaughan.orpius.com/post/Scroll-Based-Data-Loading-in-Windows-Phone-7.aspx




回答2:


You're thinking about data virtualization. Shawn Oster wrote a really good explanation to this here. To sum it up, it's not the ListBox that is managing your data, but your custom IList implementation, that is able to fetch new items each time a new data chunk is needed.




回答3:


you can just check the vertical offset if is greater than the scrollable height, the user is at the bottom of the list, fire the request for another page as needed.




回答4:


The best approach is to use the LongListSelector. It's available from the Windows Phone Toolkit for Windows Phone 7 or it's built-in on Windows Phone 8. It performs better than the built-in ListBox and has more features.

A post from the official Windows Phone Developer blog (from October 2012) gives all the details and tells how to setup infinite scrolling.



来源:https://stackoverflow.com/questions/15341638/detecting-scrolling-to-the-end-of-listbox

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!