vote up 3 vote down star

I've been playing a lot with MVC lately in the forms of ASP.NET MVC and Django (MTV actually) and I must say that I love it.

Are there any similar frameworks for creating desktop WinForm apps?

flag

63% accept rate

3 Answers

vote up 4 vote down check

Here's the landing page for MVC-in-WPF (AKA DMVVM) I always pass around:

http://blogs.sqlxml.org/bryantlikes/archive/2006/09/27/WPF-Patterns.aspx

link|flag
vote up 2 vote down

Not that I know of.

Most of my Winforms apps use the MVC or MVP pattern though. I've noticed that when creating Winforms apps you don't really need much of a framework. There is no routing infrastructure and no view-rendering. I find that I don't have to do much plumbing to use these patterns.

That might explain why there are no high profile frameworks in that space.

link|flag
vote up 1 vote down

A winforms app blends the view and controller into pretty much one thing, the form. In other words, you are working with a model view/controller pattern. Much of the work for the view and controller is already done.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.