How to detect ListView is scrolling up or down
Is there a way to detect that ScrollViwer of ListView is in scrolling mode and stopped scrolling. In windows phone 8.1 ListView we can not get reference of the scrollviewer. Any one done it in windows phone 8.1 WinRT app? yasen Once the ListView is Loaded you can get the ScrollViewer like this: var sv = (ScrollViewer)VisualTreeHelper.GetChild(VisualTreeHelper.GetChild(this.ListV, 0), 0); Edit As Romasz suggested, once you get the ScrollViewer , you can use its ViewChanged event, to monitor when it is scrolling and when it stops. Also, here's the generic extension method that I use for