private void presentacionToolStripMenuItem_Click(object sender, EventArgs e) { FrmPresentacion frm = new FrmPresentacion(); frm.MdiParent = this; frm.Show(); }
private void presentaciónToolStripMenuItem_Click_1(object sender, EventArgs e) { var formulario = new FrmPresentacion(); formulario.MdiParent = this; formulario.Show(); }
private void presentacionesToolStripMenuItem_Click(object sender, EventArgs e) { FrmPresentacion cat = new FrmPresentacion(); cat.MdiParent = this; cat.Show(); }
private void presentacionesToolStripMenuItem_Click(object sender, EventArgs e) { if (Presentacion == null) { Presentacion = new FrmPresentacion(); Presentacion.MdiParent = this; Presentacion.FormClosed += new FormClosedEventHandler(CerrarPresentacion); Presentacion.Show(); } }
private void CerrarPresentacion(object sender, EventArgs e) { Presentacion = null; }