vote up 3 vote down star
2

How to create a rich user interface Windows application, example Photo Shop.

I am looking for clean MVC tutorial for WinForms with C# somewhere. (Not ASP.NET MVC.)

Being new on the Windows Platform; most MSDN and internet tutorials basically puts everything into the Form class. Further Default events are handled inside of the form, instead of sending events to the control/model, which in it's turn changes the view's state.

Or is the preferred methodology for Windows Applications something else?

flag

60% accept rate
1  
The thing is that WinForms maybe isn't the best toolkit for MVC, given that in Windows Forms, the controller, the view and the model aren't really separated. I think you would have more luck in WPF which is more flexible in this sense. – DrJokepu Jun 5 at 14:07
2  
You may want to take a look here before the boo birds come out. stackoverflow.com/questions/2406/… – Refracted Paladin Jun 5 at 14:07

4 Answers

vote up 0 vote down

It might be worth looking at the Model-View-ViewModel (if you're interested/happy to use WPF particularly).

It's tweaked specifically to work with WPF and Silverlight, and makes use of databinding in order to glue everything together.

There's a number of resources on the web for finding out more, including John Gossman's introduction, and a good article by Josh Smith, who has other resources on his blog relating to MVVM.

link|flag
Josh Smith's article is really good – s5804 Jun 5 at 15:06
vote up 0 vote down

Take a look at this tutorial. I was looking for the same thing as you and found this helpful. It is Model-View-Presenter but still quite informative.

http://www.cerquit.com/blogs/post/MVP-Part-I-e28093-Building-it-from-Scratch.aspx

link|flag
vote up 1 vote down

For Windows applications, the Windows OS inadvertently becomes part of the Controller.

The Model can subscribe to various events/ messages (e.g. mouse click, move, window re-size, button click...). When it has done its change-update-processing the view is updated through the redraw operations.

Windows OS acts as the controller here because it is both sending messages to the model (e.g. mouse click) or to the view (telling it a portion of windows is dirty and needs redraw).

Of course for any commercial application, you would implement your own model and document structures and separate them from the corresponding WinForm objects.

In .net this is not so clear because there is only one file for both the model and view portions. In MFC it was very clear - with a CDocument class and its corresponding CView class.

Rather than the MVC pattern, for Windows applications it helps to understand the Windows messaging architecture and how to handle them.

link|flag
Are you suggesting that Winforms are sufficient in most cases. Provided that messaging is done correct? – s5804 Jun 5 at 14:31
Yes. However do think if you have cases like needing to update multiple forms etc. In such case perhaps it makes sense to separate the model into a different class and may be implement a controller as well to coordinate between the model class and the form objects. – Sesh Jun 5 at 14:37
vote up 0 vote down

Hi, You can take a look at these implementations from codeplex

http://koosserymvcwin.codeplex.com/

http://wrails.codeplex.com/

http://winformsmvc.codeplex.com/

Give us your feedbacks.

link|flag

Your Answer

Get an OpenID
or

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