Esempio n. 1
0
 public studyVerbs()
 {
     this.InitializeComponent();
     totalVoc = irregularVerbs.getTotalVocabulary();
     pos      = 0;
     word     = irregularVerbs.getWord(0);
     actBoxes();
 }
Esempio n. 2
0
 public testVerbs()
 {
     this.InitializeComponent();
     total             = irregularVerbs.getTotalVocabulary();
     word              = irregularVerbs.getWord(act);
     meaningBox.Text   = word.psimple;
     totalWords.Text   = total.ToString() + " Words to test";
     numRemaining.Text = "Success";
 }
Esempio n. 3
0
 private void next_Click(object sender, RoutedEventArgs e)
 {
     pos++;
     if (pos >= totalVoc)
     {
         pos = 0;
     }
     word = irregularVerbs.getWord(pos);
     actBoxes();
 }
Esempio n. 4
0
        private void next_Click(object sender, RoutedEventArgs e)
        {
            total -= 1;
            act++;
            if (act >= irregularVerbs.getTotalVocabulary())
            {
                Next.IsEnabled        = false;
                meaningBox.Background = new SolidColorBrush(Colors.White);
                Example.Background    = new SolidColorBrush(Colors.White);
                wordBox.Background    = new SolidColorBrush(Colors.White);
                GetAnswer.IsEnabled   = false;
                Check.IsEnabled       = false;
                numRemaining.Text     = exitos + " Successes out of " + act;
                totalWords.Text       = total.ToString() + " Words remaining";
                return;
            }
            if (total == 0)
            {
                meaningBox.Text     = "";
                Example.Text        = "";
                meaningBox.Text     = "";
                Next.IsEnabled      = false;
                Check.IsEnabled     = false;
                GetAnswer.IsEnabled = false;
                return;
            }
            word            = irregularVerbs.getWord(act);
            Check.IsEnabled = true;
            meaningBox.Text = word.psimple;
            Example.Text    = "";

            numRemaining.Text     = exitos + " Successes out of " + act;
            totalWords.Text       = total.ToString() + " Words remaining";
            wordBox.Background    = new SolidColorBrush(Colors.White);
            wordBox.Text          = "";
            Next.IsEnabled        = false;
            meaningBox.Background = new SolidColorBrush(Colors.White);
            Example.Background    = new SolidColorBrush(Colors.White);
            wordBox.Background    = new SolidColorBrush(Colors.White);
        }