private void btn_Seleccionar_rubro_Click(object sender, EventArgs e) { Rubro rubro = null; using (ListadoRubros frm = new ListadoRubros()) { frm.ShowDialog(this); rubro = frm.EntidadSeleccionada as Rubro; } if (rubro != null) { this.CargarRubro(rubro); } }
private void btn_Seleccionar_rubro_Click(object sender, EventArgs e) { Rubro rubro = null; using (ListadoRubros frm = new ListadoRubros()) { frm.ShowDialog(this); if (!frm.cerrado) { rubro = frm.EntidadSeleccionada as Rubro; } } if (rubro != null) { this.CargarRubro(rubro); this.btn_Seleccionar.Visible = false; this.btn_Limpiar_rubro.Visible = true; } }