Reputation: 783
I have a Long List Selector. when page loading first then it has 10 items in the list, when user scroll down the list and when he reach to the bottom of the list then I want to add 10 items to the list.
I tried lot of methods to catch the end of the scroll but can't find any event for it in WP8.
Upvotes: 1
Views: 325
Reputation: 3379
There is no magic. The trick is same that you tried. I.e. You need to listen to a specific event and load the next 10 item. For a detail code example see this
Upvotes: 1
Reputation: 147
You can use event ItemRealized on Longlistselector or Try this http://blogs.windows.com/windows_phone/b/wpdev/archive/2012/10/01/how-to-create-an-infinite-scrollable-list-with-longlistselector.aspx
Upvotes: 2