Class OutputTreeBox
- Namespace
- NanoByte.Common.EtoControls
- Assembly
- NanoByte.Common.EtoForms.dll
Displays tree data to the user.
public static class OutputTreeBox
- Inheritance
-
objectOutputTreeBox
Methods
Show<T>(Control?, string, NamedCollection<T>, char)
Displays an output dialog with tree data.
public static void Show<T>(Control? owner, string title, NamedCollection<T> data, char separator = '|') where T : INamed
Parameters
ownerControlThe parent window the displayed window is modal to; can be
null.titlestringA title for the data.
dataNamedCollection<T>The data to display.
separatorcharThe character used to separate namespaces in the Names. This controls how the tree structure is generated.
Type Parameters
TThe type of INamed object to list. Special support for types implementing IHighlightColor and/or IContextMenu.