Looking for a way to detect finger gestures in my Windows Mobile applications. Main goal: detect when user gestures a left or right swipe across the screen. Similar to the swipe motion used to unlock an iPhone.
Looking for a way to detect finger gestures in my Windows Mobile applications. Main
Share
Set a flag when a
MouseDownevent occurs, storing the position as well.MouseMoveevents, and check the direction and distance relative to theMouseDownevent that you require for an action to take place.MouseUpevents and check the direction and distance.