Where can I find a good example on how to completely implement the MVC pattern in Windows Forms. I found many tutorials and code examples on various sites (e.g. CodeProject, .NetHeaven) but many are more representative for the observer pattern than MVC. Since the application I want to develop is for a school project, I am reluctant to using frameworks like PureMVC or MVC#.
|
|
I am of the view that applications are so different from each other and our understanding of how applications should be written is sill very limited. Past Windows Forms applications I have worked on have been so different from each other, some of the design differences I have seen are (including most combinations):
Therefore I don’t think it’s possible to create one implementation of MVC (or MVP) that always fits well. The best posts I have seen really explaining MVC and why a MVC system is built the way it is, is the "Build Your Own CAB" series by Jeremy D Miller. After working though it you should be able to understand your options a lot better. Microsoft's Smart Client Guidance (CAB / Microsoft Composite Application Block) should also be considered, it is a bit complex but can work well for applications that have a good fit. Selecting a MVC/MVP Implementation for a Winforms Project give an overview that is worth reading. A lot of people like PureMVC, I have never used it, but will look at it the next time I need a MVC framework. "Presenter First" is a software development approach that combines the ideas of the Model View Presenter (MVP) design pattern and Test-Driven Development. It lets you start of by writing tests in the customer’s language .e.g
I have no experience using "Presenter First," but will give it a try when I get a chance, as it looks very promising. Other stackoverflow questions you may may wish to look at here and here. If you are thinking of useing WPF at any point take a look at the Model-View ViewModel (MVVM) pattern. Here is a very good video you should take a look at: Jason Dolinger on Model-View-ViewModel. |
|||
|
|
|
|
UPDATE: In addition to my previous answer below, I suggest reading about the "Presenter First" approach (especially the PDF articles) I would recommend MVP (PassiveView pattern actually) instead of MVC. You don't really need any special frameworks for this, it's just how you organize your code. One approach (which I usually take) is to split each windows form into three entities:
Example code (a simple pseudocode, just for illustration):
|
|||
|
|
|
|
Have you looked at PureMVC? I've found that no one can agree on what MVC really looks like once they start building a specific implementation. Update: You could build your own starting with something simpler such as MobileMVC. Compact Framework code should compile/run OK on Windows. Since this is a school assignment I would suggest that you actually spend some time learning how MVC actually works. |
|||
|
|
|
I wrote an article last year, Selecting a MVC/MVP Implementation for a Winforms Project, that provides an example of a pretty simple passive view framework. Also see here and here. |
||||
|
|
|
You might want to take a look at Differential Execution. Here it is in SourceForge IMO, it is a vast improvement on MVC, though it is still quite unusual. |
||
|
|
|
|
A good example at rolling your own implementation of MVC using Windows Forms can be found here. Source code is included. As you read, study, and write code for this assignment you are going to find that there are a lot of disagreements on how MVC should be implemented. This one is a simple case that reflects the separation of concerns as well as a good example of the 'plumbing' required to hook this up. When you are out of school you will probably want to fall back on a framework like the other posters have recommended. |
||
|
|
|
|
Microsoft Composite Interface Application block started its life as a MVC implementation (amongst other patterns it implemented). The release version, however, evolved into an MVP implementation, which can be argued to be a kind of a different interpretation of the MVC concept. If you are willing to check the code of a very complete (and somehow complex) MVP implementation, you can find the MS-CAB as one of the components of Microsoft Smart Client Software Factory. It comes with source code. You can find it here. Good luck! |
||
|
|
|
|
I've only had a cursory glance at the code but this "tutorial" and sample project might be useful: http://rdn-consulting.com/blog/2008/02/01/selecting-a-mvcmvp-implementation-for-a-winforms-project/ |
||
|
|
