Ejemplo n.º 1
0
 private void chronoToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     if (this.FRM_C == null)
     {
         this.FRM_C = new FRM_Chrono {
             MdiParent = this
         };
         this.FRM_C.Show();
         this.FRM_C.FormClosing += new FormClosingEventHandler(this.fermeChrono);
     }
     else
     {
         this.FRM_C.Activate();
     }
 }
Ejemplo n.º 2
0
 private void fermeChrono(object sender, EventArgs e)
 {
     this.FRM_C = null;
 }