|
|
|
|
|
by legulere
1956 days ago
|
|
What you describe is the model and view part of the MVC pattern: The view is just a projection of the model. How does the UI get notified of changes? (like the article discusses some changes might come from different part of the UI, or might even come from external like in a chat client) How do you handle actions of the user? (Of course in the controller in MVC, but how does it work exactly?) |
|
Note that in this case, most modern framework actually focus on what Microsoft called MVVM in Silverlight (Model View View-Model), a lesser strict "clean controller" approach where view and controller are tangled in each other since it's throw away code for the most part, while the model stays clean.