In my app, the Horizontal ScrollBar of GridView fires the Scroll event when the app runs on PC and simulator in Mouse mode.
But on my Surface RT, the Scroll event doesn't get raised, why is this happening?
I need to check the scroll bar is at its end to load more data into the GridView. Since Grouping is required in my GridView so I don't think make the ItemsSource support incremental loading is an option here. That's why I have to hook up the
Scroll event in my app. What can I do to make it happen on Surface RT(or on simulator in Touch mode)?
Thanks.