/// <summary> /// Cierra la ventana HomeForm /// </summary> public void CerrarHomeForm() { this.abiertoHomeForm = false; this.homeForm = null; }
/// <summary> /// Abre la ventana AbrirForm /// </summary> public void AbrirHome() { homeForm = new HomeForm(); homeForm.MdiParent = this; homeForm.padre = this; this.abiertoHomeForm = true; homeForm.Show(); }