Ejemplo n.º 1
0
 public void Verificar_FormsAbertos(Form FormAberto)
 {
     foreach (Form FRM in this.MdiChildren)
     {
         if (FRM.GetType() == FormAberto.GetType())
         {
             FRM.Focus();
             return;
         }
     }
     FormAberto.MdiParent = this;
     FormAberto.Show();
 }