MAC
MAC

Reputation: 6577

Good Sites that are describing about MVVM Pattern

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.

Upvotes: 7

Views: 490

Answers (6)

nlawalker
nlawalker

Reputation: 6514

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.

Upvotes: 0

Jehof
Jehof

Reputation: 35544

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

Upvotes: 3

Johann Gerell
Johann Gerell

Reputation: 25591

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

Upvotes: 2

Daniel Chambers
Daniel Chambers

Reputation: 1665

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.

Upvotes: 2

statenjason
statenjason

Reputation: 5190

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.

Upvotes: 6

Related Questions