2
votes
2answers
79 views
Is There Any Advantage in Passing a UI wrapper to a view
Most of the MVC samples I have seen pass an instance of the view to the controller like this
public class View
{
Controller controller = new Controller(this);
}
…
1
vote
Any recommendation for a good enough Winforms GUI design?
Martin Fowler is a good source of information on all things design patterns including MVC. Fowler discusses Passive View and separation of responsibilities is demonstrated also
…
1
vote
What are the most commonly used anti-patterns?
I particularly like when when people don't change the name of the automatically generated Form1. This usually indicates that there is not likely to be any attempt at separating UI from logic, and …
