C# Class FormExample.DebugForm

Inheritance: System.Windows.Forms.Form
Show file Open project: EldinZenderink/SimpleIRCLib Class Usage Examples

Public Methods

Method Description
AppendToDebugOutput ( string debugMessage ) : void

Appends debug messages from irc client to debug richtextbox output box. Invoke is needed because this method executes on a different thread!

DebugForm ( ) : System

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

Private Methods

Method Description
ClearButton_Click ( object sender, EventArgs e ) : void
DebugForm_FormClosing ( object sender, FormClosingEventArgs e ) : void

Makes sure that the form doesn't actually close, but hides instead, so debug messages can still be appended!

InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

Method Details

AppendToDebugOutput() public method

Appends debug messages from irc client to debug richtextbox output box. Invoke is needed because this method executes on a different thread!
public AppendToDebugOutput ( string debugMessage ) : void
debugMessage string defines the message to be appended to the debug richtextbox output box
return void

DebugForm() public method

public DebugForm ( ) : System
return System

Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
return void