private void button1_Click(object sender, EventArgs e) { DialogResult dialog = MessageBox.Show("Ви впевнені, що хочете вийти з облікового запису?", "Попередження", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (dialog == DialogResult.Yes) { start_form start_Form = new start_form(); start_Form.Visible = true; Close(); } }
private void Registration_form_FormClosed(object sender, FormClosedEventArgs e) { start_form log = new start_form(); log.Visible = true; }