Tagged Questions

4
votes
2answers
2k views

C# WinForms Model-View-Presenter (Passive View) Help

I'm developing a WinForms application in C#. I have limited experience in GUI programming, and I am having to learn a great deal on the fly. That being said, here's what I am building. See the ...
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 ...
3
votes
1answer
334 views

How do I attach a UserControl to a form in an MVP pattern?

I'm trying to create a kind of master/detail UI using an MVP pattern. I have the usual suspects: interface IMainView{} class MainView: Form, IMainView{} interface IMainPresenter{} class ...
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 ...
1
vote
4answers
230 views

My presenter needs to prompt the user for more information. How do I wire it up?

I'm working with the Passive View pattern. The user clicks a new account button. The view delegates responsibility to the presenter using parameterless method calls. The problem is there are multiple ...
1
vote
3answers
600 views

How should I expose hierarchical data from a TreeView control to a MVP presenter?

I have some hierarchical data in a Winforms TreeView control and I need to expose it as a property so my presenter can synchronize changes to it. Just to be clear, I'm using the Passive View pattern. ...
0
votes
2answers
178 views

Model-View-Presenter and Transferring Large Objects

I have traditionally implemented a Model-View-Presenter [Passive View] like so: interface IView { string Title {set;} } class frmTextBox : Form, IView { ... public string Title { set { ...