what is the importance of MVVM architecture ?
what is the importance of MVVM architecture ? How to use it in WPF & Silverlight applications with c# ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Anurag SarkarPosted Jun 9, 2013, 9:44 PM
MVVM Part 1 this article will help you to understand Model-View View Model pattern.
http://www.codeproject.com/Articles/36545/WPF-MVVM-Model-View-View-Model-Simplified
http://wpftutorial.net/MVVM.html
Model-View View Model pattern is basically used to seperate the three layers of the application
i.e:-
Logic Layer
Presentation Layer
Data Access Layer
Some MVVM Frameworks
Check out this handy tool to compare MVVM frameworks: MVVM Comparison Tool (Silverlight- PRISM (Microsoft)
- MVVM Light (Laurent Bugnion)
- WPF Application Framework
- Chinch
- Caliburn Micro
- Core MVVM
- Onyx
- nRoute
- MVVM Foundation
http://www.youtube.com/watch?v=EpGvqVtSYjsYou can also check out this video for more information.
Thanks