Class OutputGridBox
- Namespace
- NanoByte.Common.EtoControls
- Assembly
- NanoByte.Common.EtoForms.dll
Displays tabular data to the user.
public static class OutputGridBox
- Inheritance
-
objectOutputGridBox
Methods
Show<T>(Control?, string, IEnumerable<T>)
Displays an output dialog with tabular data.
public static void Show<T>(Control? owner, string title, IEnumerable<T> data)
Parameters
ownerControlThe parent window the displayed window is modal to; can be
null.titlestringThe window title to use.
dataIEnumerable<T>The data to display.
Type Parameters
TThe type of the data elements to display.