2
Reply

What is Model-View-View Model?

Manish Tewatia

Manish Tewatia

Apr 07, 2011
4.7k
0

    Model-View-ViewModel (MVVM) pattern splits the User Interface code into 3 conceptual parts - Model, View and ViewModel out of which the concept of the ViewModel is the new and the most exciting.Model is a set of classes representing the data coming from the services or the database. View is the code corresponding to the visual representation of the data the way it is seen and interacted with by the user. ViewModel serves as the glue between the View and the Model. It wraps the data from the Model and makes it friendly for being presented and modified by the view. ViewModel also controls the View's interactions with the rest of the application (including any other Views).

    shimab alam
    February 13, 2014
    0

    Try the link below, I hope that it will be helpful for you :

    http://www.c-sharpcorner.com/UploadFile/nipuntomar/5763/

    James Tomar
    April 11, 2011
    0