2
Reply

What is MVVM design pattern?

Manish Sharma

Manish Sharma

Sep 03, 2012
2.8k
0

    http://blogs.msdn.com/b/msgulfcommunity/archive/2013/03/13/understanding_2d00_the_2d00_basics_2d00_of_2d00_mvvm_2d00_design_2d00_pattern.aspx

    Munesh Sharma
    April 17, 2014
    0

    MVVM is a UI design pattern. The main use of this pattern to remove UI cluttered code like bindings, synchronization etc. In this pattern we create an extra class called as view model which acts as a bridge between model and view. The view sends the actions and data to the view model class who in turns sends the data to model. Any changes in the model is informed to the UI using the INotifyPropertyChanged interface.

    jeetendra tripathi
    September 11, 2012
    0