I need to create the following logic. For example, LongListSelector contains 10 items initially. When user scrolled it to end, another 10 items must be loaded and added to this LongListSelector. Then again, if user reached the end of the list, 10 more items must be added.
I also predict that there might be the following problem. The event of the list's end must be triggered only once, until new 10 items will be loaded. I must prevent multiple triggering and let the new items to be loaded, before new "End of List Event" will be triggered.
So, how to make it? First of all, I need to know, how to detect that the end of the LongListSelector is reached?