예제 #1
0
        private void label3_Click(object sender, EventArgs e)
        {
            menu x = new menu();

            this.Close();
            x.Show();
        }
예제 #2
0
 private void timerCreditos_Tick(object sender, EventArgs e)
 {
     if (music < 180)
     {
         music += 1;
     }
     else
     {
         CreditosM.Ctlcontrols.stop();
         menu x = new menu();
         this.Close();
         x.Show();
     }
 }