Base data store interface to bind to a collection of objects of a particular type.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public interface IDataStore<out T>
Public Interface IDataStore(Of Out T)
type IDataStore<'T> = interface end
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "T:Eto.Forms.IDataStore`1"]
The IDataStoreT type exposes the following members.
Properties
| Name | Description |
---|
| Count |
Gets the number of items in this data store.
|
| Item |
Gets the object at the specified index.
|
TopRemarks
Note that you should use an
ObservableCollectionT if you want
the control to respond to changes of the collection.
See Also