Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Pivot Control in my WP7 app that by nature responds to left and right swipes to move between the pivot items.

I then want to use the Flick Gesture on a UserControl (a small UI segment on my page) for something else.

My user control does handle the event but so does the Pivot control, so it navigates to the next item. I have not figured out how to stop the event when the usercontrol handles it.

Is it possible to use a sub control with the flick gesture within a WP7 Pivot Control?

eg:

        private void glBlinds_Flick(object sender, FlickGestureEventArgs e)
        {
                //do stuff
                e.Handled = true;
        }
share|improve this question

5 Answers

up vote 4 down vote accepted

The short answer is don't put a control which supports a gesture on top of another control which also supports the same gesture.

Please see this answer to a very similar question for a slightly longer response: http://stackoverflow.com/questions/3888947/wp7-toggle-switch-in-a-pivot-control/3890733#3890733

share|improve this answer
From a techincal POV I thought that was the whole point of e.Handled = to stop the event bubbling up and being consumed further up? From a Users POV - it's perfectly acceptable - it's like saying you can only have 1 click event per page if the outer frame navigation relies on clicking! There must be a solution? – Rodney Oct 19 '10 at 9:43
1  
From a usability persective this is very hard to do well. It's also hard to make it clear to the user where the boundary for one gesture ends and the next starts. As a rule: don't do this. If you want to break the rule then be aware of the consequences. AFAIK the pivot control does not support a way of handling swipe gestures to override the default behaviour - hopefully/presumably to discourage potentially breaking the default behaviour. Mouse click events and touch gesture events are not directly comparable. don't assume they are - even though the tools call touches clicks. – Matt Lacey Oct 19 '10 at 10:42
From a usability POV I don't see why it should be a problem if the UI denotes the boundaries with clear demarkations - ie. if you swipe on THIS element it does x and if you swipe anywhere else it does Y. The user doesn't not know techincally that one control is a child of the other - the navigation elements of the pivot control are at the top - in the old days they would just click on the tab headings to change page, it happens to let them swipe anywhere on the page. It just seems strange that there is no way around this - I have to have swipe gestures and I was planning on using Pivot sigh – Rodney Oct 19 '10 at 10:56
1  
For me, a usability fix would be the exact same Pivot control layout but the swipe only works on the headers. Swiping anywhere else would work and the user would never know any different. Thanks for the replies. – Rodney Oct 19 '10 at 10:57
1  
ps - I found this in the UI Design and Interaction Guidelines (although I am still not 100% convinced ;) "Pivot pages must not override the horizontal pan and flick functionality as it collides with the interaction design of the pivot control." – Rodney Oct 19 '10 at 11:38
show 4 more comments

This solution posted recently seems to be working out for people for dealing with gesture conflicts on pano / pivot. You might like to check it out.

Preventing the Pivot or Panorama controls from scrolling

share|improve this answer
Thanks Mick - are you sure it works with the Gesture controls tho? In the comments another user seemed to be having problems with it (I have not tried it) – Rodney Nov 25 '10 at 23:36
non, not working. How to correct ? – Tim Nov 26 '10 at 13:29
Thanks! that's the right answer I was searching for. – Buju Jan 20 '11 at 16:23

Final solution ! explanations on my blog at http://mine.tuxfamily.org/?p=111 ;)

share|improve this answer

I found this works well for incorporating a slider on a pivot item:

LayoutRoot
  Pivot
    PivotItem
      Grid
        Scrollviewer
          [Content goes here, I use another grid]
        Slider

If I skip the grid and place the slider inside the scrollviewer it doesn't work. I stumbled upon this solution as I wanted to support landscape and still have the slider visible / usable.

You might be able to place your small UI segment for the gesture similar to where I placed my slider.

share|improve this answer

Use mouse Capture on your component (not pivot, but the child component that support gesture), I've given an answer in the link given above: http://stackoverflow.com/questions/3888947/wp7-toggle-switch-in-a-pivot-control/3890733#3890733

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.