tags:

views:

46

answers:

2

Hi,

I have got programming experience using the MVC pattern on web applications, I am planing to implement an application to learn WPF, which pattern should I apply?

Which one is the most used?

Thanks

+6  A: 

If you already have experience in MVC, then you should certainly learn MVVM, which is a pattern similar to MVC, but adapted to and improved by utilizing the binding, commands, and templating features of WPF.

Charlie
MVVM goes hand in hand with WPF
Preet Sangha
Like Charlie said, MVVM goes hand in hand with WPF and with SL4 it is doing a really good job even in Silverlight ;)
Chris Schroeder
A: 

MVVM is best one for learning but you can also look at Composite WPF(PRISM) from Microsoft Pattern & Practices; It is also used a lot -

http://www.codeplex.com/CompositeWPF

akjoshi