BenBtg
BenBtg

Reputation: 836

Detect that Windows Phone Scrollviewer has reached full scroll extent

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

Answers (1)

Paul Diston
Paul Diston

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

Related Questions