I am using Surface Toolkit for Windows Touch Beta. I have a UserControl
within a ScatterViewItem
on a ScatterView
. I want to receive ManipulationCompleted
event on a UserControl
but it doesn't seem to ever be raised even though IsManipulationEnabled="True"
is also set. The same thing works perfectly in a non-Surface WPF4 app.
It appears various Touch
WPF events play well with Surface but it seems like a lot of work to recreate a tap event and NSWE events that I can easily interpret from ManipulationCompleted
event.
I am looking on ways to either receive ManipulationCompleted
event on my UserControl
or to simulate it by handling existing touch events.
Any pointers?