Reputation: 836
I have windows phone app that has a Scrollviewer listing some content retrieved online.
I am trying to find a way to trigger a refresh when the scroll position has reached it's maximum scroll extent.
Is this even possible?
Upvotes: 0
Views: 939
Reputation: 3294
You could hook into the MouseMove event of the ScrollViewer control, then if the VerticalOffset value equals the ScrollableHeight value then you know you need to load more content.
Upvotes: 1