Ejemplo n.º 1
0
        private void btnVoltar3_Click(object sender, EventArgs e)
        {
            var retornar = new Tela4();

            retornar.ShowDialog();
            this.Close();
        }
Ejemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            var tela4 = new Tela4(txtDescricao.Text);

            tela4.ShowDialog();
            this.Close();
        }
Ejemplo n.º 3
0
 private void button2_Click(object sender, EventArgs e)
 {
     if (Application.OpenForms.OfType <Tela4>().Count() > 0)
     {
         Form Jogo = Application.OpenForms["Tela4"];
         Jogo.Show();
         this.Hide();
     }
     else
     {
         Form Jogo = new Tela4();
         Jogo.Show();
         this.Hide();
     }
 }