vote up 2 vote down star
2

I've just learned what ASP.NET MVC is and I'm wondering if the pattern is ever used in Windows Desktop application development?

I'm specifically looking at potentially trying to use it in a Desktop .NET application.

Please forgive me if this question is way out in left field in terms of how MVC is suppose to be used. I'm still trying to wrap my head around the details of it.

Thank you in advance and best regards,
Frank

flag

The MVC architecture was popularized (maybe invented?) with SmallTalk, along with OOP and GUI frameworks. It's definitely a desktop-app thing. it was shoehorned into web apps, and only makes sense after a big redefinition of the terms. – Javier Nov 21 '08 at 6:22

5 Answers

vote up 1 vote down check

MVC comes in many flavors, Marting Fowler discusses at http://martinfowler.com/eaaDev/uiArchs.html

Google returns quite a lot of interesting stuff for windows forms mvc also

link|flag
Googling it it was a good idea; thanks – Frank Nov 21 '08 at 4:36
vote up 0 vote down

I don't rememer where I see a good example of MVC for descktop apps.
It was about a thermometer.
The model was the thermometer it self. A simple POJO with the current state of temperature.
The apps have several views and controllers of the thermometer.
The controllers calls the setters, and the views calls the getters.
To synch the app use the Observer pattern. The views subscribe to the model.
And the model notify all the views subscribed in each setter.

It was a very useful example for understand MVC.

link|flag
vote up 5 vote down

The Model-View-Controller Pattern works like a dream with "desktop" apps, as you don't have to worry about handling state information.

link|flag
Thank you. I had to select the Hates_'s answer because of the link. But I still thank you for your reply. – Frank Nov 20 '08 at 16:51
vote up 4 vote down

Most definitely. Here is a list of MVC GUI frameworks.

link|flag

Your Answer

Get an OpenID
or

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