Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to create a Windows8 application but there are multiple elements like progress bar, same app bar and other components that are been used over and over again. In previous application i have been applying these elements in every page. Is there some approach by which I can make a master page and inhert an use it in every page. As we can do in ASP.Net Master page concept?

share|improve this question
duplicate stackoverflow.com/questions/12532155/… – NaNNy Oct 10 '12 at 9:34
may be you can use an UserControl? – EaterOfCorpses Oct 10 '12 at 9:51
@EasterOfCorpses How can i use UserControl approach? I have seen in a link software-architects.com/TechnicalArticles/WPFMasterPages/tabid/…. But there are many System library that are not supported now in WinRT framework. Can you please elaborate on your approach? – Balraj Singh Oct 10 '12 at 10:22

1 Answer

up vote 0 down vote accepted

You have to deal with frames :

<Page x:Name="MainPage">
  <Grid x:Name="LayoutRoot">
    <Frame x:Name="BasicLayout"/>
    <Frame x:Name="SpecificLayout"/>
  </Grid>
</Page>

Use BasicLayout to show components that are been used over and over again.
Use SpecificLayout to show your page-specific content (So you don't directly navigate from the "master" Frame, but from the SpecificLayout one).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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