예제 #1
0
 private void button2_Click(object sender, EventArgs e)
 {
     TestingInfo TestingInfo = new TestingInfo();
     TestingInfo.info(TestingInfo.Score);
     TestingInfo.EndTesting("Знание государственных образовательных стандартов");
     this.Close();
 }
예제 #2
0
        private void button2_Click(object sender, EventArgs e)
        {
            TestingInfo TestingInfo = new TestingInfo();

            TestingInfo.info(TestingInfo.Score);
            TestingInfo.EndTesting("Навыки работы с программой ZOOM");
            this.Close();
        }
예제 #3
0
        public static async Task <string> GetFormattedFinalTestingTextToUserAsync(TestingInfo testingInfo)
        {
            var pattern = await Texts.GetFinalTestingTextToUserAsync();

            var result = Format(pattern, testingInfo.VisitDateTime);

            return(result);
        }
예제 #4
0
        private void button1_Click(object sender, EventArgs e)
        {
            TestingInfo TestingInfo = new TestingInfo();

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

            nexttext.Show();
            this.Close();
        }
예제 #5
0
        private void StartTesting_Click(object sender, EventArgs e)
        {
            TestingInfo TestingInfo = new TestingInfo();

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

            nexttext.Show();
            this.Close();
        }
예제 #6
0
        private void Test1_1_Load(object sender, EventArgs e)
        {
            timer1.Interval = 1000;
            timer1.Enabled  = true;
            timer1.Start();

            TestingInfo TestingInfo = new TestingInfo();

            TestingInfo.clear();
        }
예제 #7
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     TimerLabel.Text = (--TimerTick).ToString();
     if (TimerTick == 0)
     {
         timer1.Stop();
         TestingInfo TestingInfo = new TestingInfo();
         TestingInfo.info(TestingInfo.Score);
         TestingInfo.EndTesting("Навыки работы с программой ZOOM");
         this.Close();
     }
 }
예제 #8
0
 private void timer1_Tick(object sender, EventArgs e)
 {
     TimerLabel.Text = (--TimerTick).ToString();
     if (TimerTick == 0)
     {
         timer1.Stop();
         TestingInfo TestingInfo = new TestingInfo();
         TestingInfo.info(TestingInfo.Score);
         TestingInfo.EndTesting("Знание государственных образовательных стандартов");
         this.Close();
     }
 }