Exemplo n.º 1
0
        /// <summary>
        ///
        /// REINICIA UN NUEVO FORMULARIO
        ///
        /// </summary>

        public override void btNuevo_Click(object sender, EventArgs e)
        {
            InterseccionPlanos nuevo = new InterseccionPlanos(directa);

            if (flotante != null)
            {
                flotante.Close();
            }
            nuevo.Show();
            this.Close();
        }
Exemplo n.º 2
0
        private void AceptarInterseccionPlanos_Click(object sender, EventArgs e)
        {
            if (this.Owner != null)
            {
                this.Owner.Hide();
            }

            bool directo = rbDirecta.Checked;

            if (!rbDirecta.Checked && !rbPasoAPaso.Checked)
            {
                return;
            }

            InterseccionPlanos interseccionplanos = new InterseccionPlanos(directo);

            interseccionplanos.Size = new Size(1392, 703);
            interseccionplanos.Show();
            interseccionplanos.Owner = this.Owner;
            this.Hide();
        }