Esempio n. 1
0
        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);
        }
Esempio n. 2
0
        private void formatTesterToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormatTestForm formatTestForm = new FormatTestForm();

            formatTestForm.Show();
        }