private void label3_Click(object sender, EventArgs e) { this.Hide(); LastQestion lastQestion = new LastQestion(this.state); lastQestion.Show(); }
private void officeButton_Click(object sender, EventArgs e) { this.Hide(); LastQestion lastQestion = new LastQestion("office"); lastQestion.Show(); }
private void GamingButton_Click(object sender, EventArgs e) { this.Hide(); LastQestion lastQestion = new LastQestion("gaming"); lastQestion.Show(); }
private void CasualButton_Click(object sender, EventArgs e) { this.Hide(); LastQestion lastQestion = new LastQestion("normal"); lastQestion.Show(); }