views:

235

answers:

6

Hi, i started the learning MVVM pattern. So could anybody help me to list Some Good Sites that are describing about MVVM Pattern. thanks in advance.

+6  A: 

This article by Josh Smith is what made MVVM clear for me.

Make sure you grab a copy of the source and look through that as well.

statenjason
Thanks for yourreply
Dilse Naaz
And some additional thoughts: http://neverindoubtnet.blogspot.com/2010/03/mvvm-josh-smiths-way.html
SwDevMan81
+2  A: 

Here's one from MSDN Magazine about using MVVM in WPF. WPF is similar to Silverlight, so it should apply to what you're trying to do with minimal changes.

Daniel Chambers
already posted.. anyway thanks for your response
Dilse Naaz
Ah, damn, beat to the punch by just a few seconds. :)
Daniel Chambers
+2  A: 

CodeProject: A Practical Quick-start Tutorial on MVVM in WPF

Johann Gerell
+3  A: 

Here´s a good video where Jason Dollinger builds a small WPF application based on MVVM. I found it very useful.

Jehof
A: 

I like this demo from Jeff Procise. His focus when he was writing it was on commanding, but it's a good illustration of MVVM as well. Small, but it gets the layering right, and will help you start thinking about how your layers communicate and work together.

In any case, code is 100x as useful as reading. Once you've read a few articles you've read them all, and your time is better spent looking at lots of small applications to see how they do it.

nlawalker