Ejemplo n.º 1
0
        public void initializeUI()
        {
            additionalInfoFlag = false;
             myIterator = new WordListIterator(wordDictionary.WordList);

             string[] listTypes = {"All Words", "UnMastered Words", "Mastered Words"};
             cbxListSelector.ItemsSource = listTypes;
             cbxListSelector.SelectedIndex = 0;

            lblNoOfWords.Content += wordDictionary.Count.ToString();
            lblWords2Master.Content += wordDictionary.UnMasteredCount.ToString();
            lblWordsMastered.Content += wordDictionary.MasteredCount.ToString();
            setText(myIterator.First());
        }