2

I want to implement pull to refresh in a Windows Store App. When the user pulls down the list beyond the top of the list, I want to show a message and some animation.

Is there a way to hook into the PointerMoved event when the user is pulling down the list? I do not get this event when the user is pulling.

I tried to get it on one of the descendants of the ListView. There I can get it during pulling when I set ManipulationMode = ManipulationModes.All, but then the list is not scrolling anymore.

Marcel Wolterbeek
  • 3,367
  • 36
  • 48

1 Answers1

0

The only way I could figure it out was to implement my own ListView/ScrollViewer input. See here.

Community
  • 1
  • 1
Filip Skakun
  • 31,624
  • 6
  • 74
  • 100