public void PracticeWords(WordList loadedList) { textBoxInputWord.Text = null; LoadedList = loadedList; var randomWord = LoadedList.GetWordToPractice(); practice = new PracticeGUI(randomWord, loadedList); labelTranslateThisToThis.Text = practice.Play(); labelShowHowManyWords.Text = practice.PrintTotalScore(); }
public void ResetPractice() { PracticeGUI.ResetPractice(); }