Beispiel #1
0
        private void label3_Click(object sender, EventArgs e)
        {
            this.Hide();
            LastQestion lastQestion = new LastQestion(this.state);

            lastQestion.Show();
        }
Beispiel #2
0
        private void officeButton_Click(object sender, EventArgs e)
        {
            this.Hide();
            LastQestion lastQestion = new LastQestion("office");

            lastQestion.Show();
        }
Beispiel #3
0
 private void GamingButton_Click(object sender, EventArgs e)
 {
     this.Hide();
     LastQestion lastQestion = new LastQestion("gaming");
     lastQestion.Show();
 }
Beispiel #4
0
 private void CasualButton_Click(object sender, EventArgs e)
 {
     this.Hide();
     LastQestion lastQestion = new LastQestion("normal");
     lastQestion.Show();
 }