Click here to Skip to main content
15,881,812 members
Articles / Programming Languages / C#

Understand MVVM Using PRISM by Hello World Silverlight Application

Rate me:
Please Sign up or sign in to vote.
4.69/5 (32 votes)
25 Mar 2013CPOL10 min read 94.3K   3.7K   72  
Understand MVVM using PRISM by Hello World Silverlight application.
using ModuleWorld.ViewModel;
namespace ModuleWorld.View
{
    public interface IWorldView
    {
        IWorldViewModel Model { get; set; }
    }
}

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
India India
I am a Microsoft Full Stack Developer.

Comments and Discussions