Example #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            this.Hide();
            NetHostForm form = new NetHostForm();

            form.Show();
        }
Example #2
0
 public void NetHostFormTest()
 {
     NetHostForm testNetHostForm = new NetHostForm();
     testNetHostForm.listBox1_SelectedIndexChanged();
     testNetHostForm.label6_Click();
     testNetHostForm.textBox1_TextChanged();
     testNetHostForm.label7_Load();
     testNetHostForm.panel1_Paint();
     testNetHostForm.button1_Click();
     testNetHostForm.OnFormClosing();
 }
Example #3
0
 private void button1_Click(object sender, EventArgs e)
 {
     this.Hide();
     NetHostForm form = new NetHostForm();
     form.Show();
 }