Files
docs-desktop/dotnet-desktop-guide/framework/wpf/controls/how-to-display-data-by-using-gridviewrowpresenter.md
T
Andy De George da363692ff Initial WPF content migrated (#17)
* Reset branch for WPF changes

* Convert BMP to PNG; fix link-out-of-scope err

* Add snippets for WPF... 6794 files!!!!

* Add missing snippets

* update file updated between migration

* Fix paths to include

* update breadcrumb and toc

* fix index links

* fix index links

* fix index links

* fix markdown
2020-09-04 09:46:28 -07:00

1.4 KiB

title, ms.date, helpviewer_keywords, ms.assetid
title ms.date helpviewer_keywords ms.assetid
How to: Display Data by Using GridViewRowPresenter 03/30/2017
displaying data with GridViewRowPresenter [WPF]
GridViewRowPresenter [WPF]
bdb785a5-a262-44d5-a517-ea14383e5f70

How to: Display Data by Using GridViewRowPresenter

This example shows how to use the xref:System.Windows.Controls.GridViewRowPresenter and xref:System.Windows.Controls.GridViewHeaderRowPresenter objects to display data in columns.

Example

The following example shows how to specify a xref:System.Windows.Controls.GridViewColumnCollection that displays the xref:System.DateTime.DayOfWeek%2A and xref:System.DateTime.Year%2A of a xref:System.DateTime object by using xref:System.Windows.Controls.GridViewRowPresenter and xref:System.Windows.Controls.GridViewHeaderRowPresenter objects. The example also defines a xref:System.Windows.Style for the xref:System.Windows.Controls.GridViewColumn.Header%2A of a xref:System.Windows.Controls.GridViewColumn.

[!code-xamlGridViewRowPresenterSample#GridViewRowPresenter]

See also