In C# and using Microsoft Visual Studio, I need it in Windows Forms Application.
ID: 3680773 • Letter: I
Question
In C# and using Microsoft Visual Studio, I need it in Windows Forms Application. If I could get a list of the names of the tools that need to be dragged into the design window and then what the final code would look like. Pay special attention to the modification to the original problem at the end.
Create a game similar to Hangman named GuessAWord in which a player guesses letters
to try to replicate a hidden word. Store at least eight words in an array, and randomly
select one to be the hidden word. Initially,display the hidden word using asterisks to represent each letter. Allow the user to guess
letters to replace the asterisks in the hidden word until the user completes the entire
word. If the user guesses a letter that is not in the hidden word, display an appropriate
message. If the user guesses a letter that appears multiple times in the hidden word, make
sure that each correct letter is placed. Create a GUI version of
the game and include a Start button that selects the random word and
performs other startup tasks before you reveal the game interface. After the startup tasks
are complete, you can remove the Start button from the form.
Modification and clarifications:
---Create a GUI (Windows Form) version
---Use a fixed-width font for displaying a word being guessed.
---Pay attention to turning on and off visibility of different user interface elements when needed.
---Additionally, display in red the current total number of unsuccessful guesses, including repeating ones (just
ignore repeating correct guesses).
---Clear the input textbox as part of input processing
---When the word is guessed correctly:
1. stop taking more guesses for the current word;
2. display congratulation;
3. do not dismiss the word and the number of wrong guesses;
4. offer a new round of the game.