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):
- Directly talk to database (2 teartier)
- Use a backend that has been written for the given application (3 teartier)
- Use a set of web services that were written for use by many applications and can’t be changed for your application. (Service-oriented architecture)
- Updates being done by CRUD operations
- Updates being done with the command pattern (sending commands to backend server)
- Lots of usages of data binding / no usages of data binding
- Most data being “table like” (e.g. invoices) that work well in standard grid controls / need custom controls for most of the UI data.
- 1 Developer / Teams of 10 or 20 developers (just on the UI)
- Lots of unit test using mocks etc / no unit tests
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
"When I click the 'save' button then the file should be saved and the unsaved file warning should disappear.”
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.
