void CloseForm(object sender, FormClosedEventArgs e) { formrov = null; fc1 = null; fc2 = null; fc3 = null; fcs1 = null; fcs2 = null; fcs3 = null; }
private void camara3ToolStripMenuItem_Click(object sender, EventArgs e) { if (fcs3 == null) { fcs3 = new fSetCam3(); fcs3.MdiParent = this; fcs3.FormClosed += new FormClosedEventHandler(CloseForm); fcs3.Show(); } else { fcs3.Activate(); } }
private void button2_Click(object sender, EventArgs e) { fSetCam3 f = new fSetCam3(); f.Show(); }