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