I create a page in Windows Phone 8.1 which with many component inside it(not just a long list, but some other controls), so I use a scrollviewer control to wrap the controls. In the meantime, I need support some gesture in the page, like quickly swipe up/down.
In windows phone 8.1, the ScrollViewer control will handled the manipulationDelta and related event, and will not fired ManipulationDelta event.
After some search, someone mentioned UseOptimizedManipulationRouting will enable scrollviewer raise the event. But the windows phone 8.1 runtime just removed this property. Change ManipulationMode could help to receive the ManipulationDelta event, but it will disable the original scroll behavior of the ScrollViewer itself.
I could understand the ScrollViewer need to interrupt the ManipulationDelta event to improve performance. My question is is there any we or alternate method could help to get gesture when using scroll viewer?