Skip to main content
A newer version of this page is available. .

WinForms MVVM

  • 3 minutes to read

The DevExpress MVVM Framework allows you to utilize the Model-View-ViewModel design pattern in WinForms applications.

Step-by-Step Tutorials

Explore over 100 examples with a live code section. These interactive demos are compiled in real-time, and they illustrate how to implement MVVM concepts in real-world apps.

Run Demo: MVVM Tutorials

Win MVVM Demos

What is MVVM and Why Should You Use It?

Designed for WPF development, Model-View-ViewModel (MVVM) is an architectural design pattern that separates your application into three layers.

  • Model - defines the data and your business logic.
  • View - specifies the UI, including all visual elements (buttons, labels, editors, etc.) bound to properties and commands in the ViewModel.
  • ViewModel - connects Model and View. This layer is an abstraction of the View that exposes public properties and commands used to bind your data to GUI elements and manage this data.

The diagram below illustrates these layers and their ways of communication.

WinForms MVVM - Common MVVM Scheme

This separation grants you multiple benefits, such as a more independent development process for both developers and designers, easier code testing, and simpler UI redesigns. Refer to this MSDN article for more information on MVVM and its benefits: The MVVM Pattern.

The following video introduces the DevExpress WinForms MVVM Framework and describes a few key benefits of our implementation.

MVVM in WinForms Apps: Issues and Options

The WinForms platform, without a third-party MVVM Framework, lacks such essential features as agile data bindings or bindable commands. To follow MVVM principles, you would have to manually implement those features in an additional layer — Presenter. Typically, this layer includes UserControls and their code-behind, methods that customize View elements, event handlers, and bindings.

The DevExpress MVVM Framework includes built-in support for all required features, and enables pure MVVM development with WinForms without the need for that additional workload. As an added benefit, it integrates well with DevExpress WinForms UI Controls that you are already using in your applications.

The list of supported features and benefits includes:

  • Flexible data bindings
  • Commands and command bindings
  • Behaviors and services
  • An advanced way to implement notifications and commands
  • The MVVM Context component, which governs everything from creating ViewModels to registering DevExpress services
  • Simple (POCO) class support
  • Rich interoperability with other DevExpress WinForms controls
  • Template Gallery templates, created specifically for MVVM apps
  • Fluent API and Data Annotation Attribute support
  • Various design-time capabilities

Free DevExpress MVVM Libraries

Examples

See Also