Class OutputGridBox
Displays tabular data to the user.
public sealed class OutputGridBox : Form
- Inheritance
-
OutputGridBox
- Extension Methods
Methods
Dispose(bool)
Clean up any resources being used.
protected override void Dispose(bool disposing)
Parameters
disposing
booltrue if managed resources should be disposed; otherwise, false.
Show<T>(IWin32Window?, string, IEnumerable<T>)
Displays an output dialog with tabular data.
public static void Show<T>(IWin32Window? owner, string title, IEnumerable<T> data)
Parameters
owner
IWin32WindowThe parent window for the dialogs; can be
null
.title
stringA title for the data.
data
IEnumerable<T>The data to display.
Type Parameters
T
The type of the data elements to display.