Presenting data in a grid
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.
Getting ready
Make sure Visual Studio is up and running.
How to do it...
We'll create an application that shows some personal information in a grid layout, showing some of the features of the DataGrid
control.
- Create a new WPF application named
CH06.DataGridDemo
. - Open
MainWindow.xaml
. Add aDataGrid
to the existingGrid
and bind it to whateverDataContext
is available:<DataGrid ItemsSource="{Binding}"> </DataGrid>
- The data we're going to use is a simple personal information ...
Get Windows Presentation Foundation 4.5 Cookbook now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.