Class OutputGridBox
Displays tabular data to the user.
public sealed class OutputGridBox : Form
- Inheritance
-
objectMarshalByRefObjectComponentControlScrollableControlContainerControlFormOutputGridBox
- Extension Methods
Methods
Dispose(bool)
Clean up any resources being used.
protected override void Dispose(bool disposing)
Parameters
disposingbooltrue 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
ownerIWin32WindowThe parent window for the dialogs; can be
null.titlestringA title for the data.
dataIEnumerable<T>The data to display.
Type Parameters
TThe type of the data elements to display.