Thursday, April 25, 2013

Day 8: 24.04.2013 (Wednesday)

Read an article on using the MVVM pattern for Windows Phone 7 development.

MVVM Stands for:

  • M - Model
  • V - View
  • VM - View Model
Model is used for handling the business logic of the application.

View is the user interface, and in Windows Phone 7 it is implemented using XAML.

The View Model stands as a transforming middle layer between the model and the view. It basically takes changes from the view and call the appropriate functionality in the model, while it also transforms the data generated in the model to make it useful in the view.



No comments:

Post a Comment