Difference between datagrid and grid in wpf

Archie picture Archie · Apr 22, 2010 · Viewed 20.7k times · Source

What is the difference between DataGrid (not GridView) and Grid controls in wpf?

Answer

ChrisF picture ChrisF · Apr 22, 2010

A Grid is a control for laying out other controls on the form (or page).

A DataGrid is a control for displaying tabular data as read from a database for example.