5

Can someone explain the differences between the MVVM Foundation and the MVVM Toolkit? They seem to have a lot in common.

Sauron
  • 16,668
  • 41
  • 122
  • 174
  • 1
    Have 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 Answers2

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
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