Example #1
0
 private void PoseIntervalGuessQuestion()
 {
     questionArray       = IntervalTrainer.GetQuestionNotes();
     questionPrompt.Text = "What is the interval between " + notes[questionArray[0]] + " and " + notes[questionArray[2]] + "?";
 }
Example #2
0
 /// <summary>
 /// Retrieves a new set of notes for the question, and displays the question
 /// </summary>
 private void PoseNoteGuessQuestion()
 {
     questionArray       = IntervalTrainer.GetQuestionNotes();
     questionPrompt.Text = "What is the " + IntervalTrainer.GetIntervalName(questionArray[1]).ToLower() + " of " + notes[questionArray[0]] + "?";
 }