Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking to write a WPF app and am trying to pick a MVVM framework to handle some of the complexity. What would you recommend and where can I find a good tutorial/getting started guide for said framework?

share|improve this question
Thanks for the question. Because I never knew you had to use never before heard frameworks to utilize MVVM in WPF. – nawfal Jan 17 at 22:31

12 Answers

  • PRISM - Developed by Microsoft, targeting WPF, Silverlight, Windows Phone 7.
  • MVVM light by Laurent Bugnion WPF, Silverlight, WP7
  • Simple MVVM WPF, Silverlight, WPF
  • Caliburn - Caliburn implements a variety of UI patterns for solving real-world problems. Patterns that are enabled by the framework include MVC, MVP, Presentation Model (MVVM), Commands and Application Controller.
  • Caliburn Micro - A smaller version of Caliburn.
  • Silverlight.FX - Silverlight.FX is a light-weight application framework for building Rich Internet Applications with Silverlight 2.
  • MvvmCross - Cross Platform framework for MonoTouch, MonoDroid, WP7, Win8 and WPF
share|improve this answer
Adding Jounce to this list. – Nair Aug 1 '11 at 13:35

I have had success with the Composite Application Guidance for WPF and Silverlight framework, also known as "Prism". It is available, as open-source, at http://compositewpf.codeplex.com/.

I learned the basics by following along to the information in four videos describing the construction of a Prism-based application:

  1. Part 1
  2. Part 2
  3. Part 3
  4. Part 4

Good luck!

share|improve this answer
11  
While you can do MVVM with Prism, it's not an MVVM framework. – Cameron MacFarland Aug 15 '09 at 1:43
3  
@Cameron: Why it's not MVVM Framework? It contains all the functionality of other MVVM Frameworks I have seen (MVVM light, Simple MVVM. Photon, Cinch, and lot's of others). And much much more. I'm using Prism since version 4, I have no idea what was before, but now it's diffenetly the most powerfull framework, yes it's harder to learn then others but it's not because it is poorly written, it's just bigger, richer, and more powerfull. – Alex Burtsev Jul 25 '11 at 19:49
There are a very interesting training videos on PRISM V4 made by pluralsight here is the link..I highly recommend them to beginners even pros =) – HichemCSharp Jul 28 '12 at 0:16

Here's a bunch of links to MVVM frameworks:

share|improve this answer
4  
MVVM Foundation is by Josh Smith, so you know it's gonna be quality – qntmfred Aug 15 '09 at 3:35
re: MVVM Foundation - its primarily meant for WCF right now – Simon_Weaver Jul 22 '10 at 22:42
1  
@Simon: Did you mean WPF? – Cameron MacFarland Jul 23 '10 at 0:02
1  
oops - ya :-) – Simon_Weaver Jul 23 '10 at 0:47

Have not used any of them personally, but there is a roundup of a few frameworks here:

http://www.japf.fr/2009/10/a-quick-tour-of-existing-mvvm-frameworks/

share|improve this answer

A personal mix of others. I use some elements from Josh Smith's MVVM foundation (reflection helpers for type safe INotifyPropertyChanged implementation), Event Aggregator from Cinch, RelayCommand (from... I forgot :D) and many others.

Mix your own! Use only what you need, understand it all.

share|improve this answer

Yet another framework with support for the Model-View-ViewModel (MVVM) pattern:

WPF Application Framework (WAF)

http://waf.codeplex.com

share|improve this answer

I would recomend you MVVMCross framework.

It's free, open-source and well designed. It is developed by Stuart Lodge.

He implemented binding for Android and iPhone, so now MVVM is applicable to these platforms too.

For me it is one of the best MVVM frameworks - it really shows the power of MVVM. With it you can write one code (model and viewmodel layers) for different platforms (WP7, Android, iPhone, WinRT) and just change application UI (view layer).

share|improve this answer

I'd recommend CinchV2 , I do think it is one of the best MVVM-frameworks currently available.

http://sachabarber.net/?page_id=523

share|improve this answer

There is also Vidyano which uses MVVM as architecture.

share|improve this answer
Is this link dead? – Emmad Kareem Mar 23 '12 at 23:25
I've updated the link :) – XIU Mar 26 '12 at 23:31
+1, thanks for letting me know about this. – Emmad Kareem Mar 27 '12 at 0:35

I needed Extensibility (the ability to write add-ins for my application) in addition to WPF/MVVM, so I pieced together my own framework and released it as open source:

share|improve this answer

Well, I've been using CarbonMVVM for a few months and it showed as a large productivity boost. It took me some time to get used to the new model of thinking, but now i can't live without it :)

It is poorly documented for now, but has good examples.

Hope it helps someone.

share|improve this answer

Try new open-source project.

It contains many interesting solutions and templates of different MVVM problems.

https://mvvmframework.codeplex.com

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.