Exemplo n.º 1
0
        private void button2_Click(object sender, EventArgs e)
        {
            Test2_2 nexttext = new Test2_2();

            nexttext.Show();
            this.Close();
        }
Exemplo n.º 2
0
        private void StartTesting_Click(object sender, EventArgs e)
        {
            TestingInfo TestingInfo = new TestingInfo();

            TestingInfo.Score++;
            Test2_2 nexttext = new Test2_2();

            nexttext.Show();
            this.Close();
        }
Exemplo n.º 3
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     TimerLabel.Text = (--TimerTick).ToString();
     if (TimerTick < 0)
     {
         timer1.Stop();
         Test2_2 nexttext = new Test2_2();
         nexttext.Show();
         this.Close();
     }
 }