July 2015
Intermediate to advanced
1300 pages
87h 27m
English
The ListView control offers a higher customization level if compared to the ListBox and can also be used for receiving user input other than just presenting data. Same as for the ListBox, you might want to consider the DataGrid control for advanced data-binding techniques. To present a series of items, the ListView can be declared the same way as the ListBox. Things are better when you instead use this control with columns, such as in a grid. Consider the following XAML code that declares a ListView data-bound to the list of running processes:
<ListView Name="ListView1" ItemsSource="{Binding}"> <ListView.View> <GridView> <GridViewColumn Header="Process ...