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