private void mainForm_Load(object sender, EventArgs e) { FormatTestForm fTest = new FormatTestForm(); fTest.Show(); // Open all of the MDI Sub-windows //netMon = new NetworkMonitor(); netMon = new NetworkMonitor_Advanced(); pMon = new ProcessMonitor(); aView = new AlertViewer(); netMon.MdiParent = this; pMon.MdiParent = this; aView.MdiParent = this; netMon.Show(); pMon.Show(); //aView.Show(); this.LayoutMdi(MdiLayout.TileVertical); }
private void formatTesterToolStripMenuItem_Click(object sender, EventArgs e) { FormatTestForm formatTestForm = new FormatTestForm(); formatTestForm.Show(); }