Glossary Item Box
You can supply data to the xamDataGrid™, xamDataCarousel™, or xamDataPresenter™ control by either:
The DataSource property can be set to any object that implements the System.Collections.IEnumerable interface (other than a string), as shown in the XAML below.
<igDP:XamDataGrid DataSource="{Binding Source={StaticResource MyData}}"/>
The DataItems collection is marked as the "Content" property, so you don't need to specify it explicitly in XAML. Any enclosed objects will automatically get added to this collection, as shown in the XAML below.
<igDP:XamDataGrid>
<MYCustomer ... />
<MYCustomer ... />
<MYCustomer ... />
<MYCustomer ... />
</igDP:XamDataGrid>