Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MVC/MVP framework for .NET WinForms applications [closed]

Does anybody know a useable MVC/MVP framework for enterprise WinForms applications?

Before there was User Interface Process Application Block for .NET. But it is not longer under development since Windows Workflow Foundation has been released (which also will be completely rewritten with .NET 4.0).

Maybe i am not up-to-date, but i seems to me like there is a gap at the moment.

like image 698
Alexander Avatar asked Feb 11 '09 14:02

Alexander


3 Answers

Microsoft has the Composite Application Block (CAB) for use with WinForms applications. While not technically an MVC/MVP implementation, it does provide nice separation between UI code and non-UI code: http://msdn.microsoft.com/en-us/library/aa480450.aspx

It is also fairly popular to just do it yourself without using any frameworks as long as you are comfortable with the relevant patterns. Jeremy Miller has an excellent series of articles on some best practices when taking this approach:

Build your own CAB Part #1 - The Preamble

Build your own CAB Part #2 - The Humble Dialog Box

Build your own CAB Part #3 - The Supervising Controller Pattern

Build your own CAB Part #4 - The Passive View

Build your own CAB Part #5 - The Presentation Model

Build your own CAB Part #6 - View to Presenter Communication

Build your own CAB - Answering some questions

Build your own CAB Part #7 - Whats the Model?

Build your own CAB Part #8 - Assigning Responsibilities in a Model View Presenter Architecture

Build your own CAB Part #9 - Domain Centric Validation with the Notification Pattern

Build your own CAB Part #10 - Unit Testing the UI with NUnitForms

Build your own CAB Part #11 - Event Aggregator

Build your own CAB Part #12 - Rein in runaway events with the "Latch"

Build your own CAB Part #13 - Embedded Controllers with a Dash of DSL

like image 163
Dylan Smith Avatar answered Nov 19 '22 09:11

Dylan Smith


Have you tried MVC#? I started using it a while back, but the project fell by the wayside, so I can't vouch for it to much - sorry!

EDIT: I just found this article which looks pretty good too.

like image 5
Kieron Avatar answered Nov 19 '22 08:11

Kieron


We use the Smart Client Software Factory from MS. It provides IDE integration, full MVC support and once you get over the concepts behind it is a very competent implementation. You can acquire it from: http://msdn.microsoft.com/en-us/library/aa480482.aspx

like image 3
Wolfwyrd Avatar answered Nov 19 '22 09:11

Wolfwyrd