vote up 7 vote down star
7

I'm looking for code of full applications that (1) use the MVVM pattern and (2) are approachable for WPF/Silverlight/MVVM beginners. So far I have only found:

  • Crack.NET - A runtime debugging and scripting tool (useful but quite complicated)
  • CipherText - WPF Password Manager (perfect but written in VB.NET)

What are some others?

preferably smaller helper apps or tools that use MVVM but that have a completed feel, perhaps with WPF/Silverlight graphic/animation goodness, etc. which show not only the MVVM concepts being used but in a context of a real-world, completed application

My Contribution

Thanks for all the tips, I collected together a list of 15+ MVVM code examples and posted the here:

Overview of WPF/Silverlight code examples that help you learn MVVM.

flag

5 Answers

vote up 1 vote down check

Given the question, you may be interested in the current effort going on to create a "Pet Shop" type reference implementation for M-V-VM. You can join the conversation or follow progress here.

link|flag
vote up 1 vote down

The WPF Disciples group has decided to create a real-world MVVM + Mediator reference application similar to the Pet Shop refence application for Web Apps. Your can follow the development on codeplex here

link|flag
vote up 2 vote down

I've been using MVVM for the last couple of months on a project and it's been fantastic. I've been doing UI work for over 12 years and it's the best thing I've come across.

link|flag
I agree. MVVM is a smart pattern indeed, and make updates to code so easy. – Mark Apr 6 at 15:04
most of the hour-long MVVM examples that I am working through I could do without MVVM in about 5 minutes with simple code behind, such as this prism example, 20+ classes just to get master/detail working, when do the benefits start to kick in? tanguay.info/web/… – Edward Tanguay Apr 7 at 6:19
You probably would not see the benefits in doing an hour long example for MVVM. Of course you could knock together a quick demonstration quicker - but that is not what this pattern is about. The benefits kick in when using on larger projects, where the UI is seperate from the business logic. – Martin Randall Apr 15 at 21:53
vote up 2 vote down

I too class myself as a beginner in MVVM developing a large scale application for about a month now. I'm over most of the main hurdles, but keep getting confused up by a few things.

Be careful with the suggestions from Kent. They'll get you started, but the subtle differences in Silverlight and WPF will trip you up occasionally (triggers are one).

I don't know of any full sites, but I started with the Composite Application Guidance and PRISM libraries. These a little too cumbersome for a 'beginner' and just MVVM, but some of the concepts are very useful (event aggregator for example).

I suggest that you read blogs by Josh Twist, Josh Smith, Shaun Wildermuth and Nikhil Kothari. These guys are very knowledgeable. They are also very open to answering questions too.

What is your development background? Some of the concepts surrounding method calls, responses and delegation are a real break from "traditional sequential" coding techniques.

HTH, Mark

link|flag
thanks for the name tips, my background is mainly stateless web programming, never did e.g. C++ or winforms, so the whole stateful/delegate/event model + .NET 3.5 + XAML/Binding/Commands/Routing/triggers/etc + MVP/MVVM patterns are new concepts, determined to plow through them though, real apps help – Edward Tanguay Apr 6 at 11:02
I came from ASP.NET back ground too and found the Asynchrounous progeramming model the hardest to grasp. Having to raise and subscribe to events seemed like oodles of extra code at the start, but after a month or two it make perfect sense, and helps isolate components nicely. Updates are now simple. – Mark Apr 6 at 15:03
vote up 1 vote down

Try this one. Also, Family.Show may be useful.

HTH, Kent

link|flag
Family.Show was started when WPF was still Avalon and we didn't use the MVVM pattern. – Alan Le Apr 16 at 0:14

Your Answer

Get an OpenID
or

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