UAOOI.Windows.Forms

DebugWindow Class

Debug window - standard window for debugging output usage: private DebugWindow debugWindow=null; private void debugWindowToolStripMenuItem_Click(object sender, EventArgs e) { if (debugWindowToolStripMenuItem.Checked && debugWindow!=null) { debugWindow.Close(); debugWindowToolStripMenuItem.Checked = false; } else { if(debugWindow==null || debugWindow.IsDisposed) { debugWindow=new DebugWindow(this.Icon , new FormClosingEventHandler( debugWindow_FormClosing)); } debugWindow.Show(); debugWindowToolStripMenuItem.Checked = true; } }

Namespace:  UAOOI.Windows.Forms
Assembly:  CAS.Windows.Forms (in CAS.Windows.Forms.dll)

Syntax


public class DebugWindow : Form

Inheritance Hierarchy


Object
  MarshalByRefObject
    Component
      Control
        ScrollableControl
          ContainerControl
            Form
              UAOOI.Windows.Forms..::..DebugWindow