vote up 7 vote down star
10

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

flag

8 Answers

vote up 5 vote down check

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

link|flag
vote up 4 vote down

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.


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

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


4. The source

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

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

link|flag
+1 Good collection of links! Good webcast! – BengtBe Jun 18 at 8:35
vote up 0 vote down

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 ;)

link|flag
vote up 6 vote down

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?

link|flag
vote up 1 vote down

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

link|flag
vote up 4 vote down

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

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

Hi Anders

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.

link|flag

Your Answer

Get an OpenID
or

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