Are there any built-in APIs for handling gestures in WinRT (to scale up). I already have zoom working with the mouse using:
public event PointerEventHandler PointerWheelChanged;
and I need a touch equivalent. Any pointers on the best way to achieve this? Should I use one of these "manipulation" events?
public event ManipulationDeltaEventHandler ManipulationDelta;
source share