I'm using the MVP pattern in a windows form app. I need to change a radio button on the view. I can do this by exposing a Boolean property on the view, but should I be using events to manipulate the view instead?
|
|
Using "plain language" analysis, I would say that "whether or not the radio button is displayed is a property of the view" and therefore use an actual property to communicate this to the View. The other (technical) possibility would be to have a event on the Presenter, i.e. |
|||
|
|
|
It's a matter of purity vs being pragmatic... and a bit of personal style. Shouldn't matter... events are just more work than normal methods but more decoupled. Personally
However you could remove this IView dependency (presenter has reference to an IView, that needs to be instantiated and plugged in) as well by using events both ways... however I find that its too much work. The above scheme has never failed me... yet. |
||||||
|
|
|
Typically the controller changes the view through properties and subscribes to events raised by the view to know about changes. Here's a nice example of MVP, even though in Asp.NET works basically the same for Windows Forms. |
||
|
|
