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 ...
4
votes
3answers
1k views

Model View Presenter and Composite Views

I'm trying to follow the MVP (specifically Passive-View) pattern in a java swing ui application. The basic design of the application reminds a wizard control. The screen is divided to two main parts: ...
2
votes
2answers
163 views

Implementation differences between MVP Passive View and Supervising Controller for collections

I've started to wrap my head around the whole MVP pattern and despite I'm doing fine with single objects it starts getting difficult when it comes to collections. So let's say we're architecting a ...
2
votes
1answer
377 views

MVP: Presenter-Model communication

I have a design question about the communication between the model and the presenter in the MVP design pattern -- or more accurately its derived form the passive view. Let's assume the following ...
2
votes
4answers
482 views

Swing, Passive View and Long running tasks

I'm trying to implement a Passive View based gui system in swing. Basically i want to keep my view implementation (the part that actually contains swing code) minimal, and do most of the work in my ...
2
votes
1answer
115 views

Q: Creating child views in the Passive View pattern

I am very interested in using the Passive View pattern to improve testability, but I am not sure how to call child dialogs. Do you have the parent view create the child view and return an interface ...
2
votes
9answers
1k views

Why did Microsoft choose MVC for ASP.NET?

In addition to being a 30 year pattern, MVC was never meant for current applications. MVP was its successor and designed to handle event based apps coming out in the 90s. Passive View and ...
1
vote
1answer
33 views

Creating UI components dynamically in a Model-PassiveView-Controller

In a GUI application, I am using an MVC with a Passive View, as described here. This pattern is yet another variation on model-view-controller and model-view-presenter. As with these the UI is ...
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 ...
0
votes
1answer
95 views

Using MVP, how to create a view from another view, linked with the same model object

Background We use the Model-View-Presenter design pattern along with the abstract factory pattern and the "signal/slot" pattern in our application, to fullfill 2 main requirements Enhance ...