Click or drag to resize

GridViewDataStore Property

The data store for the grid.

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

Property Value

Type: IEnumerableObject
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