MVVM (EN)

Concept

An extension of MVC with a ViewModel to decouple Model and View

Architecture

flowchart TD   Model[Model] -->|Data| ViewModel[ViewModel]   ViewModel -->|Formatted Data| View[View]   View -->|User Input| ViewModel   ViewModel -->|Actions| Model 

In Context

  • Typically used together with data binding technologies
  • Related to: MVC, MVP, Clean Architecture
  • Example use: Development of desktop applications (WPF), mobile apps (Xamarin) and web applications with modern frameworks
Quelle: AI Generated