Exemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            Form ventPrincipal = new interfazPrincipal();

            ventPrincipal.Show();
            ventPrincipal.Visible = true;
            this.Visible          = false;
        }
Exemplo n.º 2
0
        private void butVolver_Click(object sender, EventArgs e)
        {
            Form ventInicio = new interfazPrincipal();

            ventInicio.Visible = true;
            ventInicio.Show();
            this.Visible = false;
        }