Click here to Skip to main content
15,881,882 members
Articles / Desktop Programming / WPF

Master page in WPF?

Rate me:
Please Sign up or sign in to vote.
4.36/5 (4 votes)
4 Nov 2013CPOL3 min read 27.3K   1K   9  
How to implement the master page pattern in WPF?
using System.Windows;

namespace MasterPage
{
    /// <summary>
    /// App class.
    /// </summary>
    public partial class App : Application
    {
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
France France
Being a software developer since 1994, I have worked in the US (DC area), and in France (Paris area), on various types of projects (device drivers, Imaging, Financial apps and database-driven web sites).

My favourite technical interests are C++, C#, .net, WPF, image analysis, GPUs, GPGPU, AI, and compilers.

See : http://www.BareImagesToolbox.com

Comments and Discussions