Click or drag to resize

GridViewTDataStore Property

The data store for the grid.

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public IEnumerable<T> DataStore { get; set; }

Property Value

Type: IEnumerableT
The data store for the grid.
Remarks
This defines what data to show in the grid. If the source implements INotifyCollectionChanged, such as an ObservableCollectionT, then changes to the collection will be reflected in the grid.
See Also