/// <summary> /// /// REINICIA UN NUEVO FORMULARIO /// /// </summary> /// public override void btNuevo_Click(object sender, EventArgs e) { ModuloArgumento nuevo = new ModuloArgumento(directa); nuevo.Show(); this.Close(); }
private void AceptarModuloArgumento_Click(object sender, EventArgs e) { if (this.Owner != null) { this.Owner.Hide(); } bool directo = rbDirecta.Checked; if (!rbDirecta.Checked && !rbPasoAPaso.Checked) { return; } ModuloArgumento moduloargumento = new ModuloArgumento(directo); moduloargumento.Size = new Size(1392, 703); moduloargumento.Show(); moduloargumento.Owner = this.Owner; this.Hide(); }