could someone help me with design/understanding the problem: what I need to achieve is page with Panorama/Pivot control, where its items (panos/pivots) will be set via binding, using standard MVVM pattern. Problem is I need to have different content (different user controls) on each pano/pivot, that means If I define a panorama/pivot item template, I doom all of them to be alike, which is not what I want.

I found this question here already asked: Databound windows phone panorama with MVVM design but its still not clear to me. Many thanks.

link|improve this question
feedback

2 Answers

If you have a dynamic page count on panorama/pivot you could use selector to choose what template is right according to your content.

Implementing DataTemplateSelector

Also, Data Binding Pivot to MVVM may help you too

link|improve this answer
feedback

You could add a dependency property to the user control that you want to use as a data template, a dependency property named "Type" for example and depending on that property you can change the layout of your user control (data template) - for example you could have multiple grids inside your user control and you could show and hide them depending on the type.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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