DataControlBase.ItemsSource Property
Gets or sets the grid’s data source. This is a dependency property.
Namespace: DevExpress.UI.Xaml.Grid
Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
Property Value
Type | Description |
---|---|
Object | An object that represents the data source from which the grid retrieves its data. |
Remarks
The grid cannot operate without a data source. It can be bound to data from a database, from an XML file or to any data created at runtime. The grid can be bound to any object that implements the IEnumerable interface or its descendant (e.g. IList, ICollection). To bind a grid, you should assign a data source to the ItemsSource property. Note that the grid cannot be bound at design-time - only at runtime.
See Also