Hello,
Welcome to our Microsoft Q&A platform!
By communicating with the engineer, we reached a conclusion, The touchpad sends Pointer
events rather than Manipulation
events. You can handle pinch input from the touchpad with the PointerWheelChanged
event.
It should be noted that the mouse wheel also triggers this event, so you need to take this into consideration when performing event processing.
Handling PointerWheelChanged
event in combination with the ManipulationDelta
will allow you to support both pinch from the touchpad and touchscreen.
Thanks.