Ejemplo n.º 1
0
        private void pictureBox5_Click(object sender, EventArgs e)
        {
            telaManterTurma voltaTelaManterTurma = new telaManterTurma(cod_user);

            voltaTelaManterTurma.Closed += (s, args) => this.Close();
            voltaTelaManterTurma.Show();
        }
Ejemplo n.º 2
0
        private void btnTurmas_Click(object sender, EventArgs e)
        {
            this.Hide();
            telaManterTurma telaTurma = new telaManterTurma(cod_user);

            telaTurma.Closed += (s, args) => this.Close();
            telaTurma.Show();
        }