I am looking to write a WPF app and am trying to pick a MVVM framework to handle some of the complexity. What would you recommend and where can I find a good tutorial/getting started guide for said framework?
|
feedback
|
| ||||
|
feedback
|
|
Here's a bunch of links to MVVM frameworks: | |||||||||||||||
feedback
|
|
I have had success with the Composite Application Guidance for WPF and Silverlight framework, also known as "Prism". It is available, as open-source, at http://compositewpf.codeplex.com/. I learned the basics by following along to the information in four videos describing the construction of a Prism-based application: Good luck! | |||||||||
feedback
|
|
Have not used any of them personally, but there is a roundup of a few frameworks here: http://www.japf.fr/2009/10/a-quick-tour-of-existing-mvvm-frameworks/ | ||||
|
feedback
|
|
A personal mix of others. I use some elements from Josh Smith's MVVM foundation (reflection helpers for type safe INotifyPropertyChanged implementation), Event Aggregator from Cinch, RelayCommand (from... I forgot :D) and many others. Mix your own! Use only what you need, understand it all. | ||||
|
feedback
|
|
Yet another framework with support for the Model-View-ViewModel (MVVM) pattern: WPF Application Framework (WAF) | ||||
|
feedback
|
|
I'd recommend CinchV2 , I do think it is one of the best MVVM-frameworks currently available. | ||||
|
feedback
|
|
I needed Extensibility (the ability to write add-ins for my application) in addition to WPF/MVVM, so I pieced together my own framework and released it as open source:
| ||||
|
feedback
|