Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I detect reaching the end of a ScrollViewer item (Windows 8)?

I need to do some work when the user scrolls to the end of a ScrollViewer in a Windows 8 'Metro UI' app that uses .xaml with C# behind-code. Alternatively, the ScrollViewer has snap-points enabled, so detecting a "snapping" event will also work.

Thanks

like image 305
Beej Avatar asked Dec 26 '22 19:12

Beej


1 Answers

You can bind your ListView to collection that implements ISupportIncrementalLoading.

The extra items will be loaded automatically when there is an empty space to fill.

like image 117
Andrea Avatar answered Apr 28 '23 03:04

Andrea