I am working on a WPF application that supports basic touch events (Not Manipulations). I am using Gong DragDrop to handle the drag and drop actions. The issue I ran into is described as follow:
In the [Preview] Drop event (using Gong DragDrop), I show a dialog and prompt the user to confirm the drop location, which user has to click on the "Yes" button to complete the drop or the "No" button to cancel the drop. I can use mouse to click on those two buttons, but no luck with touch events.
I have used spy++ to monitor the mouse events for the prompt dialog, which derived from a window. Both mouse events and the touch events were logged.
Why did the mouse event work and touch didn't? Is there a way to get touch to work?