MVVM is most commonly used with WPF because it is perfectly suited for it. But what about Windows Forms? Is there an established and commonly used approach / design pattern like this for Windows Forms too? One that works explicitly well with Windows Forms? Is there a book or an article that describes this well? Maybe MVP or MVC based?
Share
I have tried MVP and it seems to work great with windows forms too. This book has an example of windows forms with MVP pattern (sample payroll application). The application is not that complex but will give you an idea about how to go about creating it.
Agile Principles, Patterns, and Practices in C#…
You can get the source code at Source Code
EDIT:
There are two variations of the MVP pattern (a) Passive view and (b) supervising controller
For complex databinding scenarios I prefer to go with the Supervising controller pattern. In supervising controller pattern the databinding responsibility rest with the view. So,for treeview/datagrid this should be in the respective views, only view agnostic logic should moved on to the presenter.
I’ll recommend having a look at the following MVP framework MVC# – An MVP framework
Don’t go by the name (it’s an MVP framework).
Simple winforms MVP video Winforms – MVP
An example of dealing with dropdown list MVP – DropDownList
Simple treeview binding example (poor man’s binding). You can add any treeview specific logic in BindTree().
Below is the code snippet…. not tested, directly keyed in from thought….