示例#1
0
文件: Form1.cs 项目: vamsilva/LP2
        private void btnExercicio7_Click(object sender, EventArgs e)
        {
            Form fc = Application.OpenForms["frm2"];

            if (fc != null)
            {
                fc.Close();
            }

            frmExercicio7 FrmExercicio7 = new frmExercicio7();

            FrmExercicio7.Show();
        }
示例#2
0
        private void btnExercicio7_Click(object sender, EventArgs e)
        {
            frmExercicio7 frm = new frmExercicio7();

            frm.Show();
        }