Is it possible to do the slide left/right gesture in Glide?
Using the (partial) code below, trying to slide on display on the right side going left. I always seem to get 7 for the gesture which corresponds to Left. In my tests (which I very well am be doing something wrong) it seems as if only the last touch point is being registered.
Is the Pan/zoom/etc gestures for other displays or am I missing something?
// other code to setup the window
Window.GestureEvent += new OnGesture(Window_GestureEvent);
}
void Window_GestureEvent(object sender, TouchGestureEventArgs args)
{
if (args.Gesture == TouchGesture.Pan)
{
txtBlck.Text = "Pan";
Window.Invalidate();
}
}