hii is it possible to create windows application with mvc
Asked
Active
Viewed 3,785 times
2
-
Have a look at the discussion at http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms – Nimesh Madhavan Apr 18 '11 at 05:39
-
2It appears that you got quite a few useful links in your previous question about the very same topic (http://stackoverflow.com/questions/5698876/how-to-create-windows-application-with-mvc). I would recommend spending some time reading through those links, and then come back with a more specific question if you run into any problems... – Julian Apr 19 '11 at 07:13
-
**(Please do not vote to close as dupe; I have merged them together)** Re-asking the same question isn't acceptable behavior here. If you want to draw attention to your question, you will be allowed to [place a bounty on it](http://stackoverflow.com/faq#bounty) after two days. You can also [edit your question](http://stackoverflow.com/posts/5698876/edit) to add additional information, which may make your question easier to understand and answer. – Apr 20 '11 at 14:42
4 Answers
1
MVP (Model-View-Presenter) and MVP-VM (Model-View-Presenter-ViewModel) is used most often with WinForms.
See SO question: MVP examples for Windows Forms
Dan Bunea's Blog Post: Model View Presenter
Jeremy D. Miller's Blog Post: A Simple Example of the "Humble Dialog Box"
Referance: Mitch Wheat

Community
- 1
- 1

Soner Gönül
- 97,193
- 102
- 206
- 364
1
MVC the pattern: definitely yes! That's platform independent, really.
See some resources:
0
Keep only user interface code in the Form
object(s). Any interaction between the UI and the data or manipulation of the data should go in its own controller class(es). The domain objects or the data itself is the model.

Mark Cidade
- 98,437
- 31
- 224
- 236
0
Read the http://www.objectmentor.com/resources/articles/TheHumbleDialogBox.pdf but you may want to look at WPF and MVVM

Adam Straughan
- 2,766
- 3
- 20
- 27