Ejemplo n.º 1
0
 void CloseForm(object sender, FormClosedEventArgs e)
 {
     formrov = null;
     fc1     = null;
     fc2     = null;
     fc3     = null;
     fcs1    = null;
     fcs2    = null;
     fcs3    = null;
 }
Ejemplo n.º 2
0
 private void camara1ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (fcs1 == null)
     {
         fcs1             = new fSetCam1();
         fcs1.MdiParent   = this;
         fcs1.FormClosed += new FormClosedEventHandler(CloseForm);
         fcs1.Show();
     }
     else
     {
         fcs1.Activate();
     }
 }
Ejemplo n.º 3
0
        private void button2_Click(object sender, EventArgs e)
        {
            fSetCam1 f = new fSetCam1();

            f.Show();
        }