Friday, May 28, 2010

MVVM –Model-View-ViewModel Design Pattern

 

Design Patterns: In software engineering, a design pattern is a general repeatable solution to a commonly occurring problem in software design. A design pattern isn't a finished design that can be transformed directly into code. It is a description or template for how to solve a problem that can be used in many different situations.

What is MVVM?

It’s an architectural pattern created by John Gossman from WPF team.

MVVM is Model-View-ViewModel Design pattern .But this is different from Common Design pattern which is created by GOF (Gang  Of Four) The four authors were Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides

Model => Holds the Data.

View => Presents/Shows the Data.

ViewModel =>Holds the Models which is Presented/Showed in a View. 

When we are building WPF or Silverlight applications is better to use MVVM pattern because this pattern offers the following benefits.

 

  1. Testability ( ViewModel is easier to unit test than code-behind or event driven code)
  2. Clear separation between UX designer and developer
  3. Increases the "Blend ability" of your view
  4. Model never needs to be changed to support changes to the view
  5. ViewModel rarely needs to be changed to support changes to the view
  6. No duplicated code to update views

The Important is  MVVM  makes uses of  Silverlight & WPF Binding.

image

Here I am going to show how to use MVVM pattern when building Silverlight application. Here i am not going to use any framework tooling. Here is the workflow I am going to follow.

  1. Create a Silverlight Application.
  2. Create Model, View,ViewModel Folders.
  3. Add or Create a Model class with some properties . Here I am going to create Custom class. ( we can use EF , WCF  etc..).
  4. Implements INotifyPropertyChanged Interface.
  5. Create ViewModelBase and ViewModel Classes.
  6. Create a View.
  7. Do the Binding.

First Fire up VS.NET 2010 and Create a Silverlight Application Project.

image 

Once project is created now we need to add the following  Model , View , ViewModel folders as shown below.

image

Now we need to create Model. To do that right click on Model Folder and Add the class called UserProfile and add the following public properties as shown below.

image 

Now right click on ViewModel folder and add the following classes.

This viewModelbase class just implements the INotifyPropertyChanged Interface this way both source and Target objects are in Sync.

image

The ObservableCollection class automatically implements  INotifyPropertyChanged Interface.

image

Now right click on View Folder and add the Silverlight Usercontrol name it as UserProfileView.XAML And add the following XAML code

image

And add the following code in the UserProfileView.XAML code behind.

image

Here i am creating 100 user profiles and adding to ObervableCollection and setting to UserProfileViewModel class and setting Datacontext.

image

image

I hope i explained MVVM pattern very simple and everyone can understand easily . Here i used Properties binding even we can use ICommand as well  (Silverlight 4.0). I am happy to answer this blog readers questions.

Nandri(Thanks)

SreenivasaRagavan.