Hey,
http://msdn.microsoft.com/en-in/library/windows/apps/hh452768.aspx
When im coding a WP8 App i'm Always copy pasting elements from one page to another (a common example would be the title bar [app logo + some common buttons like search]) ... I wanted to know if its possible to build SPA(single page application) in XAML.
As per the above link its possible in JS.
i.e. They have shown
home.html has 1.html
and on a code behind function execution
home.html has 2.html
Is this possible in XAML? If not can you recommend an alternative to avoid copying elements (even UserControls etc.) like having a common title bar box/component and the content below changes?
Thanks in advance!