Universal Windows Platform (UWP)
A Microsoft platform for building and publishing apps for Windows desktop devices.
2,523 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi there,
I'm currently working on an Unofficial Instagram client "Winsta" and I recently added a pinch to zoom feature to it but it doesn't work with the touchpad.
Touchpad gestures don't invoke the Manipulation events.
I know I can use a ScrollViewer instead, but in my tests, ScrollViewer failed a lot. Isn't there any way to implement manipulation for the touchpad?
thanks.
thanks really.
Still there's no update for this case?
I'm sorry to keep you waiting. I have discussed this issue with the engineer, and already have begun to investigate this issue. If there is new progress, I will update here
Hi there,
Normally, How long does it take? it passed for about one month and no updates.
Hi, sorry for the late reply. We discussed this issue within the group and entered the process as a bug. This issue will be fixed in subsequent system versions.
Sign in to comment
1 answer
Sort by: Most helpful
Hello,
Welcome to our Microsoft Q&A platform!
By communicating with the engineer, we reached a conclusion, The touchpad sends
Pointer
events rather thanManipulation
events. You can handle pinch input from the touchpad with thePointerWheelChanged
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 theManipulationDelta
will allow you to support both pinch from the touchpad and touchscreen.Thanks.
Hi there and thanks for your suggestion. However this solution worked, but this solution is not very suitable for my case. Anyhow, thanks.
Sign in to comment