I've started a WPF (web-based) application and it has multiple pages. I want to implement the concept of a Master page in WPF, so that when I make changes in the design/layout of one page then all the others pages will follow suit without all the copy and paste.
|
feedback
|
|
I don't think the concept of Master Page is valid in WPF basically because there are no pages. In WPF exists styles, templates and DataTemplates. Not only that, using the DockPanel and other containers you can achieve most of the functionality provided by ASP.NET Master Pages. In any case, if you still the need of the master pages, I suggest check this article: http://www.codeproject.com/KB/WPF/WPFMasterPageControl.aspx HTH | |||
|
feedback
|
|
The WPF Magellan Framework (open source) have Master pages (and other several interesting concepts)
| |||
|
feedback
|
|
You can use global styles to apply a consistent look and feel across your app. As for functionality of a master page. Look at the MVVM pattern. Microsoft has an implementation but there are others. It let's you define a shell in xaml and specify regions that act sort of like content placeholder's in ASP.NET. Then you write user controls that get loaded into those regions in the shell. It's a lot more involved than using a master page with ASP.NET though. But conceptually similar as far as screen layout goes. As always, not a bad place to start getting an overview http://en.wikipedia.org/wiki/MVVM Tons more stuff on MSDN and so on. | |||
|
feedback
|
|
use a master view and put a ContentControl with the master view, then bind the Content property to a property on your data context and set the property to an instance of a UserControl which will then populate the content section. I will provide some more detail later | |||
|
feedback
|
