Tagged Questions

21
votes
11answers
2k views

What Alternatives Are There to Model-View-Controller?

While going through university and from following the development of SO, I've heard a lot about the Model-View-Controller architectural design pattern. I inadvertently used the MVC pattern even before ...
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
160 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
376 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
1answer
332 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 ...
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
2answers
67 views

How to expose properties of a user control in .NET for the MVP pattern

I am implementing a simple UserControl that is actually a fancy TextBox. One of its features is that you can set a formatting specification and this formatting get's applied to its contents ...
1
vote
1answer
413 views

Javascript MVP (Passive View) library

Working on a large GWT, makes me fall in love with MVP pattern that comes with GWT. Basically its a passive view, where a controller knows all the business logic, and the view is as dump as possible. ...
1
vote
2answers
489 views

MVP Passive View - Composite Views & Composite Presenters

I found M. Fowler article on Passive View pattern. I would like to apply it in my application. I use Swing for UI. I spent several hours searching tutorials or examples how to implement it but not ...
1
vote
3answers
427 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
2answers
136 views

Passive view in JavaScript

I'm thinking about an implementation of MVP - Passive View pattern in JavaScript. In most case the view will be simple dom elements where the presenter attaching event listeners. But when it comes to ...
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
599 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
1answer
93 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 ...
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 { ...