There should be a DataGrid Asset object (defined in System.Windows.Control.Data.dll - Should I add a link?), Which I think is what you are looking for.
The first thing you need to do is create a data source.
You can create a data source by selecting the data tab in the upper right corner and clicking the "define new data samples" icon. Under the assembly, you should be able to add / edit field properties for the data source. The data source will have automatically generated data for you (a very cool feature!). This can be replaced by selecting the "Change Sample Values" icon next to the collection.
Then you can drag the data grid onto your screen and set the data source by selecting the ItemsSource property in the grid (you must select the data binding option). On the data field tab, you can select a data source. Make sure you select the actual “Collection (array)” option on the right side. By default, it should automatically generate columns for you. You can change this if you want more control over column heading names, etc.
Hope this helps.
Craig MacGregor
source share