vote up 2 vote down star
1

I'm writing a WinForms application and want to have an "MVC-Type" Design. Actually it's more MVP or MVVM,.

The plan is to have a Central Controller which does all the actual work, so that the Forms just render out ViewModels and handle user input, but everything that actually does something goes through the Controller.

I just wonder if this is a good idea, and where to put the Controller? The current idea is to have a static class which is initialized in Program.cs (Sending in some Dependencies like IMyDatabaseRepository) so that it just stays a controller that delegates work between User Interface and Model.

As you might guess, I come from a Web Background and have little experience with WinForms architecture. Previously, my MainForm was the Controller class, holding all the State Variables, which obviously means that my MainForm is my application rather than just a part of the User Interface.

flag

2 Answers

vote up 3 vote down check

Nice question Michael!

Here are some links:

Hope these help you to structure your project properly!

link|flag
Those links do not appear to be working. – Ty Sep 13 at 17:48
sachabarber.net/?p=515 codeproject.com/KB/WPF/BeginWPF1.aspx I believe those are the first two and they do look pretty good. – Ty Sep 13 at 17:49
Fixed the layout, looking at them right now. – Michael Stum Sep 13 at 17:51
Michael, how did you find the last one? All it said was "Nice article on this wordpress blog". – Ty Sep 13 at 17:54
I've edited his article (2000+ Reputation Feature), the links were in there, but because he used HTML Tags they did not get rendered. Thanks by the way, even though I am doing classic WinForms, those WPF Architecture artciles still look very useful. – Michael Stum Sep 13 at 17:58
show 2 more comments
vote up 0 vote down

I don't know if this is a better way, but I am having Structuremap create my controller and database instance.
The main form has no real code in it - it just loads the first set of controls and then starts the controller. The user controls on the form use StructureMap to access the controller.
My project is regular WinForms and not WPF and is my first time using the MVC pattern with WinForms.

link|flag

Your Answer

Get an OpenID
or

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