Table of Contents

Interface ITreeItem

Namespace
Loehnert.Lisrt.TypeAndResult.VisualTreeHelpers
Assembly
Loehnert.Lisrt.TypeAndResult.dll

Interface for a type data tree item.

public interface ITreeItem
Extension Methods

Properties

IsExpanded

Gets or sets a value indicating whether the ITreeItem associated with this object is expanded.

bool IsExpanded { get; set; }

Property Value

bool

IsReadOnly

Gets or sets a value indicating whether the view model is only readable.

bool IsReadOnly { get; set; }

Property Value

bool

IsSelected

Gets or sets a value indicating whether the ITreeItem associated with this object is selected.

bool IsSelected { get; set; }

Property Value

bool

SubTreeItemsSource

Gets the sub tree items.

ObservableCollection<ITreeItem> SubTreeItemsSource { get; }

Property Value

ObservableCollection<ITreeItem>

TreeItemName

Gets the translatable Name for the tree item.

string TreeItemName { get; }

Property Value

string