Agile UI Development in .NET: View
October 24th, 2009
Last time we started looking at sample code with the view-model class for the UI to send messages on channels (table of contents).
In this post, we continue with the next responsibility, the visualization.
The View
The view is responsible for visualizing the domain model to the user. We have seen in the last post that the view-model provides a simplified mini-model to the view. That means that the view does not have to care about the domain model as a whole with all its interactions and constraints. The view-model provides only the part of the domain model that is relevant to the current screen the user is seeing thus simplifying the job of the view.

