Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've seen a lot of book recommendations for WPF here, but no witch is specific to MVVM.

share|improve this question
the answer should be changed as there is now a book by Josh Smith on the subject. – Patrick Klug Feb 20 '10 at 2:44
Yes, indeed. I have now changed it – loraderon Feb 20 '10 at 8:53

closed as not constructive by Will Aug 26 '11 at 11:11

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

10 Answers

up vote 19 down vote accepted

Josh Smith's article WPF Apps With The Model-View-ViewModel Design Pattern is a very good start... I wish Josh could write a book on this topic ;)

EDIT: At last, there is a real book, written by the same Josh Smith...

http://joshsmithonwpf.wordpress.com/advanced-mvvm/

share|improve this answer
2  
Downvoter, care to explain what's wrong with this answer ? – Thomas Levesque Nov 2 '10 at 20:15
2  
downvoter must be uneducated and must be expecting a image here :P – rapsalands Oct 11 '12 at 13:48

I think this question needs a little update. I am a MVVM fanatic and I have collected some of the best stuff for you guys ! Here it comes:


1. First approch

http://joshsmithonwpf.wordpress.com/2008/12/01/the-philosophies-of-mvvm/

He is the prophet and you shall listen to his holly verb.

http://blog.lab49.com/archives/2650

The most efficient webcast I watched on MVVM.

http://karlshifflett.wordpress.com/mvvm/wpf-line-of-business-introduction/

WPF Line of business: real great diagram.


2. Mandatory concept and tools

http://marlongrech.wordpress.com/2008/12/13/attachedcommandbehavior-v2-aka-acb/

You will have to go through ACB to solve some callback-avoid-code-behind issues.

http://marlongrech.wordpress.com/2009/04/08/mvvm-mediator-acb-cool-wpf-app-the-mvvm/

Mediator will save your soul from the ignominous high-coupled architecture.

http://marlongrech.wordpress.com/2009/04/16/mediator-v2-for-mvvm-wpf-and-silverlight-applications/

Last update on mediator.


3. Data validation

http://blogs.msdn.com/wpfsdk/archive/2007/10/02/data-validation-in-3-5.aspx

Overview of validation rules and IDataErroInfo.

http://joshsmithonwpf.wordpress.com/2008/11/14/using-a-viewmodel-to-provide-meaningful-validation-error-messages/

Josh smith about IDataErrorInfo.

http://msdn.microsoft.com/en-us/magazine/ff714593.aspx

MSDN Magazine article to go deeper.

http://karlshifflett.wordpress.com/mvvm/input-validation-ui-exceptions-model-validation-errors/

Karl Shifflett on error hiatus between model and view.


4. The source

http://groups.google.com/group/wpf-disciples/

Group of the WPF discliples: Josh Smith and the apostles.


5. A Framework

http://www.galasoft.ch/mvvm/getstarted/

You want the core of MVVM in a single framework ? MVVM light provides just what you need. In this framework:

  • Messenger is equivalent to the Mediator
  • EventToCommand behavior is equivalent to the ACB

Many thanks to the disciple Laurent Bugnion!

share|improve this answer
+1 Good collection of links! Good webcast! – BengtBe Jun 18 '09 at 8:35
+1 That is an absolutely brilliant video in point 1, thanks for the link. – chillitom Mar 16 '10 at 15:41
+1 thanks for providing such an excellent collection. – waheed Jun 9 '10 at 2:21

Yes, the time is ripe for a book called "WPF with MVVM" in which building WPF applications is taught with MVVM as a basis from beginning to end, a book that does not teach you 100 things that you have to later unlearn (code-behind click handlers, value converters, routed commands, etc.), a book that gives you an MVVM template to download and code snippets to use, and teaches you the concepts that you need to know from the beginning so you don't have to go search them out yourself.

Just as an example, it's tough to have been reading books for months that teach you routed commands and code-behind handlers and then to read articles like this which tell you that what what you have been learning is "convoluted and inappropriate" and you should have been learning MVVM from the start:

The usual way to achieve this in WPF is to register the Selector.SelectionChanged routed event via XAML, handle it in the C# behind XAML file and delegate the call to the Presentation Model or Controller. This approach is not only convoluted but also inappropriate by design.

There is a big market for a WPF/MVVM book, and it would be useful for years. Who wants to write it?

share|improve this answer

MVVM is a pretty new thing. I doubt there are some books on subject. Currently best source of information on MVVM is Karl Shifflett's blog.

IMO best publication on the subject is a CodeProject's article:

Exploring a Model-View-ViewModel Application; WPF Password Manager, Cipher Text

share|improve this answer

Not a book but a video. Explains pretty well the pattern: Jason Dolinger MVVM

share|improve this answer

Yes mine will be out soon http://www.amazon.com/Enterprise-Applications-Presentation-Foundation-ViewModel/dp/0735650926/ref=sr_1_6?ie=UTF8&qid=1287769015&sr=8-6

share|improve this answer
5  
Read the amazon reviews before buying so you know what you are getting. – Ian Ringrose Apr 11 '11 at 15:53

It's not a book (doesn't really warrant a whole book anyway), but the best resource I've seen is Dan Crevier's blog.

share|improve this answer

Also watch this recent video, where Karl explains how MVVM pattern works.

share|improve this answer

No books out yet, but since MVP is such a similiar pattern you could look into using books on MVP as the base for your knowledge.

share|improve this answer

Pro WPF & Silverlight MVVM: Effective Application Development With Model-View-ViewModel is due out in January 2011.

share|improve this answer
1  
This has very bad reviews on amazon. – Ian Ringrose Apr 11 '11 at 15:51

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