I want to have panorama control (or pivot ) that each PanoramaItem will be some MyPage.xaml. How can I do that ?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted
  1. Create each page as a user control (MyPage.xaml)
  2. In your panorama or pivot control, add a pivotitem or panormaitem
  3. Replace the default grid child of each pivotItem or PanoramaItem with an instance of the page created in step 1.
link|improve this answer
Thanks, it works. I am just new in wp7. Can you tell me good tutorial,book or smth esle where is good written about panorama and pivot controls. – Aram Gevorgyan Oct 14 '11 at 14:21
I read this tutorial. I mean more detailed description. – Aram Gevorgyan Oct 14 '11 at 14:27
@ Rich Hopkins , Thnaks, I knew about this book – Aram Gevorgyan Oct 15 '11 at 18:02
feedback

You'll want to look at System.Windows.Markup.XamlReader

We've used it to set up a listbox like so:

ListBox lb = new ListBox();
lb.ItemTemplate = (DataTemplate)XamlReader.Load("XAML as a string here");

Not exactly what you want, but should be enough to get you going.

link|improve this answer
I have different pages, and I want to put them in panorama. And change page when page is scrolled. How can I do that? And do you know good tutorial about panorama control ? – Aram Gevorgyan Oct 14 '11 at 13:55
feedback

Your Answer

 
or
required, but never shown

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