Search code examples
c#windows-phone-8panorama-control

Mix between Pivot and Panorama for Windows Phone App


Just a quick reminder. That's what a Panorama look like. All the pages except the last one display a part of the next page. enter image description here

This is what a Pivot look like. All the pages are "fullscreen" enter image description here

I would like to create a control that would be a mix between the Pivot and the Panorama control. Here is what I would like to have:

enter image description here

The middle page would be fullscreen, the left and the right page would contain a part of the middle page. But I don't know how to do it. I tried both Panorama and Pivot with some fiddling of the pages margins but without success. Do you know how to do it?

Thanks :)


Solution

  • I just found an answer by digging a lot on the web: http://sviluppomobile.blogspot.fr/2013/08/add-lateral-menus-to-windows-phone.html

    This answer suggests to make your own Panorama / Pivot with a canvas and to move left/right the pages with a storyboard.

    Hope it can help someone else!