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

there

I found that when quickly swiping or flicking the pivot, the pivot will become very obtuse.When the finger off the screen the pivot still traslate between pivotItems a few times. Is there any way to make the Pivot performance like the Panorama in the situation of quickly swiping or flicking.

share|improve this question
What do you do in each pivot item? Do you do any IO operation? Make a blank pivot project from the template and compare performance. – lukas Apr 23 '12 at 3:54
I just want to how to prevent the Pivot to Transform many times when I stop swipe or flick.But the Panorama won't like that. – Joel Apr 23 '12 at 5:15
What you can do is to customize or build your own Pivot. Here is source code that may help you phone.codeplex.com/SourceControl/changeset/view/55041#824017 – lukas Apr 23 '12 at 6:02
I already have the the code which Lukas mentioned.Somehow the code is not the exactly Pivot source code.There is still some diffenrence. – Joel Apr 25 '12 at 9:34

1 Answer

I encountered the same problem which was due to using more than 5 tabs each with databinding on them. Each time I swerved to a new page the databinding was triggered thus causing a noticeable delay. (If you keep swirving these requests create a backfill this eventually resulting in multiple background threads for each pivot tab)

I fixed this by collapsing the data on the tabs and only revealing it when the tab was shown for more than 3 seconds. This greatly reduced the databinding and thus data loading. Inmy case though I did have to resort to this because I used the tabs as ways to navigate through dates thus I was facing a potentially limitless collection and had to cycle data across my 5 available tabs. (Microsoft recommends against using more than 5 tabs).

If you have a finite set of less than 6 tabs an easier approach would be to set data binding to ‘one time’ to populate the data. If you have items on the tabs that rely on allowing a control to not just display but also update a value you can always trigger the databinding through that controls events. (be sure to not just use the updated method but also the page.navigateaway event to trigger databinding as navigating away from a page right after updating the value of a control won’t trigger the control.updated event)

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.