Skip to main content
A newer version of this page is available. .

DataControlBase.ItemsSource Property

Gets or sets the grid’s data source. This is a dependency property.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v22.1.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(null, Handler = "OnItemsSourceChanged")]
public object ItemsSource { get; set; }

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