What framework for MVVM should I use?

WpfMvvmFrameworks

Wpf Problem Overview


I am developing an application with the MVVM model, but I have reached a point where I need to choose which framework to use.

Among the possible options are:

  • MVVM Toolkit
  • MVVM Foundation
  • WPF Application Framework (WAF)
  • Light MVVM
  • Caliburn
  • Cinch
  • Prism
  • ReactiveUI

In your experience, which is better?

Wpf Solutions


Solution 1 - Wpf

It really depends on what you are trying to achieve, and how much infrastructure you want in place already, plus the ease with which you can find samples that help you out. I'm going to declare an interest here, because I've been actively involved in at least one MVVM framework, and I've had input into others through the WPF Disciples group, so I'm a little bit biased. Saying that, here goes:

Microsofts MVVM Toolkit - this is still very much in the alpha stages. When it was originally released, it took a bit of a savaging from the Disciples because of what it didn't do. Saying that, MS is looking to beef this framework up so it's one to watch - it's just not ready yet.

MVVM Foundation - ah Josh Smith's version of the framework. Josh is one of the daddies of MVVM, and has been a huge advocate and teacher of the pattern. As a result, a lot of what you'll find in other frameworks has Josh's fingerprints all over it. This framework is intended to provide the basics of MVVM, and not to address some of the more esoteric issues. Originally this was intended only for WPF, but people such as Laurent Bugnion and myself have added functionality/projects that mean this will be a Silverlight compatible framework as well.

WAF - no experience of it, so I can't comment on it I'm afraid.

MVVM Light - Laurent Bugnion's take on it, and just updated to version 2. This is a very good framework, but again it's not intended to cover every single aspect of MVVM applications. Given Laurent's background, it has very strong Silverlight and Blendability support in it.

Update Laurent has just informed me that the .NET 3.5 and .NET 4.0 versions are feature compatible. Wau to go Laurent.

Cinch - Sacha Barber's excellent WPF only MVVM framework. This covers more ground than the frameworks I've talked about above. It's an excellent framework, and takes advantage of concepts covered in Bill Kempf's excellent Onyx project. Onyx is intended to complement MVVM frameworks, and adds in functionality that's typically been hard for people to do in MVVM/WPF. Again, originally intended to be WPF only, Onyx has progressed to include SL compatibility - work I am particularly proud to have been involved in.

Prism - Again, I've never used it, but I've heard a lot of good things about it.

Ocean - Karl Shifflett, Program Manager on the Cider team, recently released a fully featured WPF MVVM framework. Again, this is an excellent framework and has lots to recommend it.

The bottom line is, download the different frameworks take a look at them and work out which one fits most intuitively with the way you think and with your requirements. If you think that you might want to support Silverlight from the same codebase then the WPF only frameworks should be discounted.

Solution 2 - Wpf

I found this article very useful http://www.japf.fr/2009/10/a-quick-tour-of-existing-mvvm-frameworks/ So that I bring it here for upcoming users

I update the Cinch section and add silverlight support to its features

I'm sorry for the long story

Common features:

> • ViewModelBase class (for the implementation of the INotifyPropertyChanged interface)

> • RelayCommand like class to link UI command to ViewModel’s handlers

> • Unit tests comes with the framework >

Cinch

> • Author: Sacha Barber

> • Silverlight support: no (Cinch version 2 supports Silverlight)

> • Documentation: excellent, 6 articles published on CodeProject

> • Hosting : CodePlex

> • License: Code Project Open License

> • Features:

> 1. attached behaviors

> 2. validation using IDataErrorInfo

> 3. support for IEditableObject

> 4. weak events creation and subscription

> 5. mediator messaging using weak events

> 6. IOC/DI support (using Unity)

> 7. services: event logger, message box, open save dialog, popup

> 8. threading helpers

> 9. support for menu items

> 10. closeable viewmodels

> 11. MVVM code generator >

MVVM Light Toolkit

> • Author: Laurent Bugnion

> • Silverlight support: yes

> • Documentation: many articles available on Laurent’s blog + other developers as well

> • Hosting: CodePlex

> • License: MIT license

> • Features:

> 1. MSI installer

> 2. VS project and item template

> 3. VS code snippets

> 4. Messenger system for inter-viewmodel communication

> 5. Handling events as commands

>

MVVM Helpers

> • Author: Mark Smith

> • Silverlight support: no

> • Documentation: some articles on Mark’s blog

> • Hosting: personal website

> • License: not defined

> • Features:

> 1. attached behaviors

> 2. viewmodel creation using markup extension

> 3. attributes based validation

> 4. IOC/DI using ServiceProvider approach

> 5. closeable viewmodel

> 6. wait cursor (using new WaitCursor() { // your code here }) >

MVVM Foundation

> • Author: Josh Smith

> • Silverlight support: no

> • Documentation: articles about the Messenger implementation on Josh or Marlon Grech’s blog

> • Hosting: CodePlex

> • License: MS-PL

> • Features:

> 1. Messenger system for inter-viewmodel communication

> 2. PropertyChanged event monitor >

Caliburn

> • Author: Rob Eisenberg

> • Silverlight support: yes

> • Documentation: complete online documentation available

> • Hosting: CodePlex http://www.codeplex.com/caliburn

> • License: MIT license

> • Features:

> 1. commands are built on top of Actions and thus share many of the same features, including multiple input parameters, filters and automatic asynchronous execution

> 2. presenters that handles UI lifecycle issue such as handling activation, deactivation and shutdown semantics for various UI components

> 3. Caliburn applications are fully testable

> 4. various utilities such as a background task manager

> 5. supports various UI pattern (not MVVM only)

> 6. dependency injection container

Onyx

> • Author: William e Kempf

> • Silverlight support: no

> • Documentation: basic introduction available on CodePlex

> • Hosting: CodePlex

> • License: not specified

> • Features:

> 1. ServiceLocator pattern

> 2. ViewModel creation using a custom markup extension

> 3. UI related services such as IDisplayMessage >

Calcium

> • Author: Daniel Vaughan

> • Silverlight support: no

> • Documentation: 2 very detailed articles on CodeProject (part1 and part2)

> • Hosting: CodePlex

> • License: use, copy, modify, and/or distribute and keep the copyright!

> • Features:

> 1. Module Manager for enabling or disabling of modules at runtime

> 2. messaging services for interacting with the user from the client or server using the same API

> 3. Command Service to associate WPF ICommands with content interfaces that only become active when an active view or viewmodel implements the interface

> 4. Region Adapters for ToolBars and Menus

> 5. Client-server logging ready to work out-of-the-box

> 6. Includes modules, such as a Web Browser, Text Editor, Output Window, and many more

> 7. Tabbed interface with dirty file indication (reusable across modules) >

nRoute

> • Author: Rishi

> • Silverlight support: yes

> • Documentation: many articles available on author’s blog (see CodePlex project home page for the links)

> • Hosting: CodePlex

> • License: MS-PL

> • Features:

> 1. support Blend3 behaviors and triggers models

> 2. resource locator framework

> 3. view services: OpenFileDialog, ShowMessage…

> 4. uses attributes to map View and ViewModel together >

Nito MVVM

> • Author: Shammah

> • Silverlight support: no

> • Documentation: no

> • Hosting: CodePlex

> • License: not specified

> • Features:

> 1. various MVVM friendly implementations of the ICommand interface >

Ocean

> • Author: Karl Shifflet

> • Silverlight support: no

> • Documentation: articles available on Karl’s blog

> • Hosting: personal website

> • License: not specified

> • Features:

> 1. written in VB.Net

> 2. attribute based validation

> 3. viewmodel base classes: relaycommand, closeableviewmodel…

> 4. SQL server data access layer >

Basic MVVM framework

> • Author: Lester Lobo

> • Silverlight support: no

> • Documentation: sample application available with the library

> • Hosting: CodePlex

> • License: MS-PL

> • Features:

> 1. delegating Commands\Keybinding

> 2. messaging between VM’s

> 3. handling events as commands with attached behaviors

> 4. handling dialogs (and more) as services

> 5. VS code snippets >

GoodLight

> • Author: Peter O’Hanlon •Silverlight support: yes

> • Documentation: sample application available with the library

> • Hosting: CodePlex

> • License: MS-PL

> • Features:

> 1. “workspace” management (set of document that can be closed)

> 2. skin support

> 3. messaging between VM’s

Solution 3 - Wpf

I try to describe the Frameworks missing in Pete’s great answer:

MVVM Toolkit (Microsoft) is a very lightweight library with Visual Studio project templates that should support beginners with this pattern. If Microsoft gets good feedback for their Toolkit then they might implement this as a new Visual Studio (maybe 2010) project template.

Prism (Microsoft p&p) is a framework that provides more than the support for the MVVM pattern. The main goal of this project is to help you to build modular WPF and/or Silverlight applications. When you just need to implement the MVVM pattern or you are a beginner in .NET/WPF I won’t recommend this project. See also: Link.

WPF Application Framework (WAF) is a lightweight framework that helps you to create WPF apps with MVVM. It’s just for WPF and so it doesn’t support Silverlight. It goes a bit another way than most other MVVM frameworks with the introduction of Controllers. They are responsible for the application workflow and they mediate between various ViewModels.

Solution 4 - Wpf

Meh. Mvvm doesn't really require an entire framework to support IMO. If you understand the concept, it's pretty straightforward to start off with a clean VM baseclass that implements INotify, and just go from there.

Solution 5 - Wpf

Also look at:

Caliburn & Onyx!

Solution 6 - Wpf

Mix your own!

I used EventAggregator from PRISM, with ViewModelBase from MVVM foundation and so on. I also tweaked the RelayCommand (DelegateCommand called in some places) to accept other data too, and so on.

I wouldn't recommend just one framework per se.

Solution 7 - Wpf

my bet will be on Caliburn and MVVMlight, it seems that not many of these mvvm frameworks support silverlight. I can foresee that there will be more MVVM frameworks to choose from than the IoC frameworks, because it is harder to set up the feature boundary to the mvvm framework. I guess the best way to find out which one is better suit your project will be by listing/comparing their features.

Also check out Mix10. I learn a lot from the talk : building your mvvm framework.

Solution 8 - Wpf

Also Cocktail and DevForce framework by Ideablade

Solution 9 - Wpf

I'm using Prism and like it. One of the big things for me was that there would be other people out there who could help me if needed and good examples. Once you get the basics running, there are a whole bunch of extensions you'll need for your app and it is just so much easier when you're working with the same framework as others.

Solution 10 - Wpf

All in all, I am 90% through my application and all I have used of MVVM Toolkit is the factory function that builds a command for me given a delegate function to launch in Execute. I think I could switch to any other framework or no framework in a couple of hours.

Solution 11 - Wpf

Another one to consider is MEFedMVVM. I've used it on a couple of projects and it's lightweight, non-intrusive and supports Silverlight and WPF. It's also able to support design-time data in Blend, for those who use that product.

Solution 12 - Wpf

If you're looking for Extensibility (the ability to write add-ins) on top of a WPF/MVVM application framework, then you may be interested in SoapBox Core disclaimer: I wrote it. It's open sourced, so even if you don't use it, there might be some good ideas in there for you. It uses MEF for both Extensibility and IoC.

Solution 13 - Wpf

There's also nRoute

A really nice application framework for WPF/Silverlight that supports MVVM

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRangelView Question on Stackoverflow
Solution 1 - WpfPete OHanlonView Answer on Stackoverflow
Solution 2 - WpfNasser HadjlooView Answer on Stackoverflow
Solution 3 - WpfjbeView Answer on Stackoverflow
Solution 4 - WpfPierretenView Answer on Stackoverflow
Solution 5 - WpfrudigroblerView Answer on Stackoverflow
Solution 6 - WpfAndrei RîneaView Answer on Stackoverflow
Solution 7 - WpfMCSeanView Answer on Stackoverflow
Solution 8 - Wpframon22View Answer on Stackoverflow
Solution 9 - WpfdaveView Answer on Stackoverflow
Solution 10 - WpfmicoView Answer on Stackoverflow
Solution 11 - WpfJohn RaynerView Answer on Stackoverflow
Solution 12 - WpfScott WhitlockView Answer on Stackoverflow
Solution 13 - WpfDaniel OView Answer on Stackoverflow