Mashhood Adeeb
Mashhood Adeeb

Reputation: 37

Change view without navigating?

I am creating an App in which I have a menu that will display on every page. The menu contains navigation to another page, so I can avoid repeating the same code on every page and in XAML. How can I change the view of a page without navigating to another page?

Upvotes: 0

Views: 84

Answers (2)

uncle_scrooge
uncle_scrooge

Reputation: 429

Hey Dont know exactly What you want,but according to my understanding you can use Pivot and Panorama control. This is the best control according to your requirement. Here is the sample code and description. http://code.msdn.microsoft.com/wpapps/PanoramaPivot-Sample-332a7e06

Upvotes: 0

GameAlchemist
GameAlchemist

Reputation: 19294

Xaml allows you to handle Frames, which are quite like html's iframes :
http://msdn.microsoft.com/fr-fr/library/cc838245(v=vs.95).aspx

some frameworks, like caliburn micro, ease the use of such frames.

Upvotes: 1

Related Questions