vote up 8 vote down star
9

I'm a C#/Winforms program with 5+ years experience. I've been investigation WPF using the MVVM (Model-View-ViewModel) design pattern. I have searched the internets high and low for tutorials. I have even watched the entirety of Jason Dolinger's awesome video. Although I have found many, I have not found one that takes me from start to finish. What I really want is a tutorial that doesn't assume any previous WPF knowledge. It would be great if it held my hand and wiped my a** too.

Please post your favorite WPF-MVVM tutorials that helped you to learn.

Thanks in advance.

flag

74% accept rate

5 Answers

vote up 1 vote down

This isn't a tutorial, but it's the diagram on this page that helped me get my head around mvvm.

link|flag
vote up 0 vote down

some blogs/websites to check out: Josh Smith Dr. WPF Bea Stollnitz

currently, Josh Smith has a "From Russia With Love" article that be of some use to you.

link|flag
well, the "From Russia With Love" article is pretty good, but I think it's intended for people who already have some knowledge of MVVM... – Thomas Levesque Sep 11 at 16:33
vote up 2 vote down

A while ago I was in a similar situation (allthough I had a little wpf knowledge already), so I started a community wiki. There are a lot of great ressources there:

What applications could I study to understand (Data)Model-View-ViewModel?

link|flag
vote up 5 vote down

I was in exactly the same situation recently, mate, and I can tell you what I did.

Josh Smith "WPF Apps With The Model-View-ViewModel Design Pattern" read again, again and again :-) download the code, examine, compile and keep it around

MVVM foundation

  1. Examine the framework, use it in your app.
  2. Look at the Demo application in that framework.

No real start-to-finish tutorials, sorry...

link|flag
+1, this is the article that got me started with MVVM, and it's really good – Thomas Levesque Sep 11 at 16:32
vote up 0 vote down

I've actually done a blog entry here. I've also created a proof of concept MVVM framework using javascript located here (kaboom.codplex.com).

The general idea of MVVM is to completely decouple the view from the behavioral logic of a form. To do "MVVM" you usually need a platform that has a very rich data binding infrastructure (which is why its so readily adoptable for Silverlight and WPF).

How to learn MVVM for WPF:

  1. Understand the motivation for the design pattern. (If you are using WPF, MVP may be another viable approach for your UI implemenation) (see links above).

  2. Get a handle on the rich data binding that WPF provides. (lots of resources out there).

  3. Get a handle on commanding concepts. (ICommand)

  4. Take a look at Prism 2 (its essentially the Composite Application Block for WPF and Silverlight. There is a lot of guidance there on how to implement MVVM.

link|flag

Your Answer

Get an OpenID
or

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