Multiple Content Page Control Windows Phone 7

608 views Asked by At

I've been searching on the web for a little while for a content control for Windows Phone 7 with multiple pages, where I would be able change content by changing the index, something like a PageControl or a TabControl, but without the tabs, but I had no luck. The Idea is to give the user multiple views for the content, but I don't want to use the pivot since it will be inside a pivot item. It can't be scrollable. I would give the user the view options, and the control would show the option he chose.

Does anyone know any kind of control that can do this kind of thing?

Thanks in advance.

1

There are 1 answers

1
123 456 789 0 On

You could use a UserControl and just switch the views on that single page. You would have to plumb your own implementation you want. But the controls should be extensible enough for it to be have your own custom implementation there on how it will work.

I would also suggest to go to this MSDN Documentation and check the inheritance of UserControl.

More specifically, to make it easier for you check Caliburn Micro to make it easy to switch content in a single page. Hope it helps!