private void btnLiquidar_Click(object sender, EventArgs e) { this.Enabled = false; GestionLiquidacionConceptos screenLiquidar = new GestionLiquidacionConceptos(this, _empresa, _legajo, false); screenLiquidar.Show(); }
private void btnEditar_Click(object sender, EventArgs e) { this.Enabled = false; GestionLiquidacionConceptos screenLiquidar = new GestionLiquidacionConceptos(this, _empresa, _legajo, true); //screenLiquidar.MdiParent = this.Index.ParentForm; screenLiquidar.Show(); }