September 2012
Intermediate to advanced
464 pages
10h 55m
English
Some types of data are best shown in a multi row, multi column grid. WPF 4 added support for the
DataGrid control, which is capable of showing a collection of objects in tabular form, with many customizations possible, out-of-the-box or programmatically.
Make sure Visual Studio is up and running.
We'll create an application that shows some personal information in a grid layout, showing some of the features of the DataGrid control.
CH06.DataGridDemo.MainWindow.xaml. Add a DataGrid to the existing Grid and bind it to whatever DataContext is available:<DataGrid ItemsSource="{Binding}">
</DataGrid>