Class OutputBox
A simple dialog displaying selectable multi-line text.
public sealed class OutputBox : Form
- Inheritance
-
objectMarshalByRefObjectComponentControlScrollableControlContainerControlFormOutputBox
- 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(IWin32Window?, string, string)
Displays an output box with some text.
public static void Show(IWin32Window? owner, string title, string message)
Parameters
ownerIWin32WindowThe parent window for the dialogs; can be
null.titlestringThe text to display above the
message.messagestringThe selectable multi-line text to display to the user.