Click here to Skip to main content
15,886,199 members
Articles / Desktop Programming / WPF

Introduction to Composite WPF (CAL, Prism): Part 1

Rate me:
Please Sign up or sign in to vote.
4.89/5 (45 votes)
12 Jun 2009CPOL17 min read 175.6K   2.8K   128  
An article showing an extremely simple implementation of CompositeWPF.

namespace JamSoft.CALDemo.Modules.ModuleA.Core
{
    public class IModuleAPresenterModel
    {
        // This is where you can include stuff that ModuleA is prepared to
        // to expose as a service or function to the outside world.

        // In this application this could easily have been left inside the
        // main module assembly since we know that no other module in the
        // application requests this from the container.

        // See Navigator for examples of this.
    }
}

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
Chief Technology Officer JamSoft Solution Ltd
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions