Can someone explain the differences between the MVVM Foundation and the MVVM Toolkit? They seem to have a lot in common.
Asked
Active
Viewed 2,025 times
5

S.L. Barth is on codidact.com
- 8,198
- 71
- 51
- 66

Sauron
- 16,668
- 41
- 122
- 174
-
1Have you put either of them into use, yet? Do you have any personal experiences with either that you can share with us now? I'm in the same boat as you. – Dave Mar 10 '10 at 17:55
2 Answers
4
MVVM Foundation is created and maintained by single person while MVVM Toolkit is part of a much larger package developed by people from Microsoft. I'm not saying which is the better - just pointing out this fact.

Martin Liversage
- 104,481
- 22
- 209
- 256
-
-
Things go back and forward, Toolkit updated Feb. 2010 while Foundation is updated Aug. 2009 – Karsten Dec 21 '10 at 08:48
1
MVVM Foundation is a thin, simple, open source MVVM architecture library. It includes alot of the basic plumbing code required for INotifyPropertyChanged and binding to Commands. Its most useful feature is the Mediator pattern implementation for both Wpf and Silverlight, which allows weak reference eventing between view models, which is indespensible if you're using MVVM. I've used it in all my Silverlight projects.

phlaz
- 19
- 1
- 2