Table of Contents

Class OutputGridBox

Namespace
NanoByte.Common.Controls
Assembly
NanoByte.Common.WinForms.dll

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 bool

true 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 IWin32Window

The parent window for the dialogs; can be null.

title string

A title for the data.

data IEnumerable<T>

The data to display.

Type Parameters

T

The type of the data elements to display.