private void timer2_Tick(object sender, EventArgs e) { MessageBox.Show("You completed all 5 games!!!"); bomb.Hide(); FinalForm.Show(); FinalForm.Closed += (s, arg) => this.Close(); }
private void button2_Click(object sender, EventArgs e) { if (textBox1.Text == "hocmemnhungcung") { FinalForm final = new FinalForm(); final.Show(); final.Closed += (s, arg) => this.Close(); this.Hide(); } else { MessageBox.Show("Wrong passcode"); } }