Interface for an item in a list control.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public interface IListItem
Public Interface IListItem
type IListItem = interface end
The IListItem type exposes the following members.
Properties
| Name | Description |
---|
| Key |
Gets or sets the unique key of the item.
|
| Text |
Gets or sets the text of the item.
|
TopRemarks
If you have a list of your own objects, it is more efficient to use them directly with the list control by
passing a collection to the DataStore property, and using TextBinding/KeyBinding to specify how to get/set the
Text and Key properties.
Otherwise, use
ListItem to define items. This may be deprecated in the future.
See Also