Beispiel #1
0
 public void AbrirInicioForm()
 {
     if (!this.abiertoInicio)
     {
         this.inicio      = new InicioForm();
         inicio.padre     = this;
         inicio.MdiParent = this;
         abiertoInicio    = true;
         inicio.Show();
     }
     else
     {
         inicio.Select();
     }
 }
Beispiel #2
0
 public void CerrarInicio()
 {
     inicio        = null;
     abiertoInicio = false;
 }