Tagged Questions

3
votes
2answers
674 views

What is a good way to implement events in Passive View?

I am learning the Passive View pattern to keep my C# WinForms application easier to test and maintain. It has worked well so far but I wonder if there is a better way to implement Events than the way ...
1
vote
3answers
430 views

MVP Passive View - keeping view data and model data separate

I have implemented an MVP triad using the passive view pattern - i.e. the view contains only simple getters and setters. However I am having trouble seperating the view data and model data. In ...
1
vote
1answer
1k views

How to Structure a C# WinForms Model-View-Presenter (Passive View) Program?

I am designing a GUI that has the following basic idea (similarly modeled after Visual Studio's basic look-and-feel): File navigation Control selector (for selecting what to display in the Editor ...