Model View ViewModel (MVVM) is an architectural design pattern which is often used in WPF, Silverlight and Windows Phone 7 development. Its primary focus is on separation of concern between the View (UI) and the Model (Data) by using an intermediate layer called a ViewModel to enhance manageability, scalability, and testability.
Popular frameworks include:
The term is also used by KnockoutJS, a framework which simplifies the creation and use of dynamic JavaScript UIs.
See Also:
- the Wikipedia entry on MVVM.
- this MSDN article on MVVM Design pattern.
- Getting Started with MVVM Pattern in Silverlight Applications.