Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good Sites that are describing about MVVM Pattern

i started the learning MVVM pattern. So could anybody help me to list Some Good Sites that are describing about MVVM Pattern. thanks in advance.

like image 296
MAC Avatar asked May 25 '10 13:05

MAC


People also ask

What is MVVM example?

Model–view–viewmodel (MVVM) is an architectural pattern in computer software that facilitates the separation of the development of the graphical user interface (GUI; the view)—be it via a markup language or GUI code—from the development of the business logic or back-end logic (the model) such that the view is not ...

What kind of pattern is MVVM?

Model-View-ViewModel (MVVM) is a software design pattern that is structured to separate program logic and user interface controls. MVVM is also known as model-view-binder and was created by Microsoft architects Ken Cooper and John Gossman.

What is MVVM Architecture explain it in your own words?

Model — View — ViewModel (MVVM) is the industry-recognized software architecture pattern that overcomes all drawbacks of MVP and MVC design patterns. MVVM suggests separating the data presentation logic(Views or UI) from the core business logic part of the application.

Where is MVVM used?

The Model-View-ViewModel (MVVM) pattern helps to cleanly separate the business and presentation logic of an application from its user interface (UI).


1 Answers

This article by Josh Smith is what made MVVM clear for me.

Make sure you grab a copy of the source and look through that as well.

like image 67
statenjason Avatar answered Sep 22 '22 07:09

statenjason