Does anyone know opensource WPF applications created using MVVM Light Toolkit? Or any samples?
-
2I would like to see some samples as well, specifically for WPF. – Sarmaad Apr 22 '10 at 10:39
-
I would like to see samples that don't require Expression Blend - craziness. – Damien Jun 25 '11 at 10:13
-
I ran across this link a few months ago. This example contains quite a few references to telerik controls, but the overall architecture of the application is fairly straightforward http://blogs.telerik.com/rosswozniak/posts/10-05-06/task-it_video_and_blog_post_index.aspx – Jgraham Feb 23 '11 at 07:16
-
One of the reasons I switched to Caliburn Micro. – Tae-Sung Shin Jan 31 '13 at 17:55
7 Answers
Well I wrote a note taking app using mvvm light, if you wanna check the code:
It's true that MVVM Light is lacking of big examples... We need to create that examples :)

- 11,918
- 9
- 64
- 88
-
Thanks dude. Your example got me started with the Messaging stuff in MVVMLight - compiled first try, direct and to the point (other examples tried to be too clever, wouldn't compile unless i spent time setting up the right SL environment, etc etc) – joedotnot Jan 05 '11 at 02:20
-
There are not many public applications using the MVVM Light Toolkit. I know a few applications that use it, but I cannot always talk about it unfortunately. Probably it is just too new.
I am currently very busy writing a Silverlight book, but my plan is, as soon as I will be done writing, to create a reference application on Codeplex and to implement it in WPF and in Silverlight. In the mean time, if anyone else wants to create samples, let me know :)
Laurent

- 6,672
- 2
- 24
- 28
-
-
For the Messenger, see my MIX10 video where I show an introduction to this class: http://live.visitmix.com/MIX10/Sessions/EX14 Also, check a much more meaty sample here: http://blog.galasoft.ch/archive/2009/10/18/clean-shutdown-in-silverlight-and-wpf-applications.aspx – LBugnion May 29 '10 at 12:02
-
The best example of usage of MVVM Light for me was MVVM Light Toolkit Fundamentals (Pluralsight). I have not found any better example (ApuntaNotas is quite good but it is lack of useful things, i.e. snippets) – Serge P Jun 05 '14 at 13:35
-
The course I published at Pluralsight has multiple samples in various frameworks. Check the documentation page at http://www.mvvmlight.net/doc – LBugnion Oct 13 '14 at 14:42
I have T4 code templates that generate your view/viewmodel for mvvm light and also other tricks. Download here

- 1,732
- 1
- 16
- 32
-
That one is fantastic. Very in-depth example. I learnt a great deal on architecture with this one. – keyle Dec 15 '10 at 01:44
Laurent, MVVM Light's author wrote an article in the latest MSDN Magazine: Using the MVVM Pattern in Windows 8

- 314
- 1
- 3
Hmm, I don't have any code myself but have a look at Shawn Wildermuth's blog, he has done an example app http://wildermuth.com/ It's Silverlight and also uses RIA services, but hte basics should be on target.
John Papa occassional has sone stuff up as well http://johnpapa.net.

- 4,844
- 1
- 22
- 17
I have written a Coding Dojo for Silverlight - Blend and MVVMLight.
http://www.alphablog.org/2011/08/07/coding-dojo-silverlight/
Take a look and see if it fits to your needs.