Beispiel #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            Form3 MyForm = new Form3();

            MyForm.Show();

            this.Hide();
        }
Beispiel #2
0
 private void TakeQuiz_Click(object sender, EventArgs e)
 {
     Form3 f3 = new Form3();
     f3.Show();
     this.Close();
 }