문제

I am not trying to cripple the program. The program has a master page and a detail page which has a picture viewer that supports flick gesture, and user can flick forward and backward to view the pictures (I implement this by handling the TouchMove event on an Image control).

The Problem: After user navigate from master page to the detail page, he can flick backward to the master page. The flick gesture is a system built-in functionality of the Frame control, I don't have to white any code to enable that gesture. If the finger swipes and leaves screen quickly, the system flick gesture is recognized. If the finger swipe is slow and steady, then the Image control has the change to fire the TouchMove event.

The question is how to disable flick gesture on the Frame? I use buttons to navigate between master and detail page so I don't need it.

OS: Windows 7, .NET 4.0.

도움이 되었습니까?

해결책

How about adding Stylus.IsFlicksEnabled="False" to your frame?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top