August 2012
Intermediate to advanced
490 pages
9h 14m
English
As shown in the requirements section earlier, in this chapter, our Northwind application needs to support a tabbed display. MVVM greatly simplifies the creating and managing of tabs as you can have the binding system map views to view models. This makes adding a tabbed interface to our UI a simple matter of using the Hierarchical View Model approach along with some basic OOD techniques.
Hierarchical View Model will be discussed in detail in Chapter 6, Hierarchical View Model and IoC.
To accomplish this, follow the steps listed here:
ToolViewModel.cs to the Northwind.ViewModel project, and update the code as follows:namespace Northwind.ViewModel { public class ToolViewModel { public string DisplayName { get; ...Read now
Unlock full access