passive-view
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.[详细]
2023-04-09 20:45 分类:问答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 automatic[详细]
2023-04-09 07:47 分类:问答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 particu[详细]
2023-01-29 16:30 分类:问答C# WinForms Model-View-Presenter (Passive View)
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.[详细]
2023-01-28 09:54 分类:问答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.[详细]
2023-01-12 19:56 分类:问答Passive view in JavaScript
I\'m thinking about an implementation of MVP - Passive Viewpattern in JavaScript. In most case the view will be simple dom elements where the presenter attaching event listeners. But when it comes to[详细]
2023-01-08 07:24 分类:问答passive view and display logic
In MVC and MVP and similar patterns there\'s often the approach of the \"passive view\" which is as stupid (contains as few logic) as possible. This should facilitate unit testing and create a clearer[详细]
2022-12-27 15:26 分类:问答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 P[详细]
2022-12-21 14:09 分类:问答Creating child views in the Passive View pattern
I am very interested in usin开发者_如何学Gog the Passive View pattern to improve testability, but I am not sure how to call child dialogs.[详细]
2022-12-19 20:55 分类:问答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.[详细]
2022-12-10 11:14 分类:问答