Data Binding
RadNavigationView can be bound to a collection of objects through its ItemsSource property. This article will demonstrate how to data bind a collection of custom objects to RadNavigationView.
Note that for every business object from the data bound collection, RadNavigationView will generate a RadNavigationViewItem container representing this object.
Creating the Model and View Model
For the purposes of this article, we will create a simple object and a view model which will hold a collection of our models. The IconGlyph property of the NavigationItemModel holds the string which will be set to the Icon property of the RadNavigationViewItem. For more information about it, check out the Icon and IconTemplate article in our documentation.
Example 1: Creating the model and viewmodel
Defining the RadNavigationView
After we have created the viewmodel, the next step is to create an instance and set it to the DataContext of a RadNavigationView. This is demonstrated in Example 2. Note, that the change of the RadNavigationView Content is animated by a RadTransitionControl, which is bound to its SelectedItem. Additionally, a ContentTemplate is specified for the RadTransitionControl.
Example 2: Defining the control and the necessary styles
Figure 1: Result from Example 2 in the Office2016 theme
For another, more complicated, databinding example, check out the First Look RadNavigationView example from the WPF Controls Samples application.