Exemplo n.º 1
0
        private void Inicio_FormClosing(object sender, FormClosingEventArgs e)
        {
            Form formulario2 = new Triángulos();

            formulario2.Close();
            Application.Exit();
        }
Exemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            Form formulario2 = new Triángulos();

            formulario2.Show();
            this.Hide();
        }