示例#1
0
        // Affichage de l’image et des boutons
        private void AfficherQuestion()
        {
            Progression_Label.Text = "Série : " + (this.compteurSerie + 1) + "    –    Question : " + (this.compteurQuestion + 1);

            Objet_PictureBox.ImageLocation = "..\\..\\..\\EMACApp\\AppImages\\Test_2\\" + this.test.imagesSeries[this.compteurSerie][this.compteurQuestion];
            Objet_PictureBox.Show();
            Zone_PictureBox.Show();
            Bouton3_Button.Show();

            if (compteurQuestion != 0)
            {
                Bouton2_Button.Show();
                Bouton1_Button.Show();
            }

            // Démarrage et affichage du chronomètre en mode difficile
            if (this.test.difficulte)
            {
                this.decompte       = this.test.intervalle;
                Decompte_Label.Text = this.decompte.ToString();
                Chrono_Panel.Show();
                Decompte_Label.Show();
                Decompte_Timer.Start();
                AfficherQuestion_Timer.Start();
            }
        }
示例#2
0
        // Masquage de l’interface permettant à l’utilisateur de choisir l’opération sur laquelle il veut se tester
        // Affichage de l’interface permettant à l’utilisateur de répondre à la première question
        private void ChangerInterface()
        {
            Choix_Label.Hide();
            Addition_Button.Hide();
            Soustraction_Button.Hide();
            Multiplication_Button.Hide();
            Division_Button.Hide();

            Zone_PictureBox.Show();
            Egal_Label.Show();
            Progression_Label.Show();
            Operation_Label.Show();
            Reponse_TextBox.Show();
            Valider_Button.Show();
        }