Posts by Pedro Trindade • 1 point
1 post
-
0
votes5
answers38715
viewsA: Calling a form and closing a form in the same event
It gave error a few times, but I calmly managed to execute: private void btnIniciar_Click(object sender, EventArgs e) { this.Hide(); Form f = new frm2(); f.Closed += (s, args) => this.Close();…