Step 8: Customize the Quiz
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
In the last part of the tutorial, you'll explore some ways to customize the quiz and expand on what you've already learned. For example, think about how the program creates random division problems for which the answer is never a fraction. To learn more, turn the timeLabel
control a different color, and give the quiz taker a hint.
To customize the quiz
When only five seconds remain in a quiz, turn the timeLabel control red by setting its BackColor property (
timeLabel.BackColor = Color.Red;
). Reset the color when the quiz is over.Give the quiz taker a hint by playing a sound when the correct answer is entered into a NumericUpDown control. (You must write an event handler for each control's
ValueChanged()
event, which fires whenever the quiz taker changes the control's value.)
To continue or review
To go to the next tutorial, see Tutorial 3: Create a Matching Game.
To return to the previous tutorial step, see Step 7: Add Multiplication and Division Problems.