I have Pivot Control in my WP7 application, which by its nature responds to left and right clicks to move between the support elements.
Then I want to use the Flick Gesture on UserControl (a small segment of the user interface on my page) for something else.
My custom control handles the event, but also the Pivot control, so it moves on to the next control. I did not understand how to stop the event when user control processes it.
Can I use a flick gesture subcontroller as part of Pivot Control WP7?
eg:
private void glBlinds_Flick(object sender, FlickGestureEventArgs e) {
source share