Show / Hide Table of Contents

Interface IListViewModel<T>

An interface for implementing a typed editable list.

Inherited Members
IListViewModel.IsEditable
IListViewModel.SupportsCopy
ICanMoveItemsWithin.MoveItemsTo(object, int)
ICanMoveItemsWithin.CopyItemsTo(object, int)
ICanMoveItemsTo.MoveItemsTo(object)
ICanMoveItemsTo.CopyItemsTo(object)
ICanMoveItemsTo.CanAppendItems(object)
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 Source

Items

Gets the list of items.

Declaration
List<T> Items { get; }
Property Value
Type Description
List<T>
View Source

SelectedItem

Gets or sets the currently selected item.

Declaration
T SelectedItem { get; set; }
Property Value
Type Description
T
  • View Source
In this article
Back to top Generated by DocFX