Interface IListViewModel<T>
An interface for implementing a typed editable list.
Inherited Members
Namespace: Phoenix.BotBrain.Controls
Assembly: Phoenix.Plugin.BotBrain.Lists.dll
Syntax
public interface IListViewModel<T> : IListViewModel, ICanMoveItemsWithin, ICanMoveItemsTo
Type Parameters
Name | Description |
---|---|
T | The item type. |
Properties
View SourceItems
Gets the list of items.
Declaration
List<T> Items { get; }
Property Value
Type | Description |
---|---|
List<T> |
SelectedItem
Gets or sets the currently selected item.
Declaration
T SelectedItem { get; set; }
Property Value
Type | Description |
---|---|
T |