Instructions:
1. Make a windows application in Visual Studio and name it as A1YourFirstnameYourLastname.
2. Design a form that looks something like the one below: see image.
3. Use a ListBox control to display 8 sports teams.
4. Add a button to randomly draw the teams against eachother in quarter-finals.
5. Add a reset button that resets the form.
6. Add GroupBox controls to represent different levels of the knockout tournament, like quarter-finals, semi-finals and final game.
7. On the initial form load, fill the ListBox with 8 teams.
8. All other buttons are disabled, except for Draw Teams and Reset Game.
9. On clicking the Draw Teams button, randomly draw all the teams and place their matches in the quearter-finals.
10. Enable the Play button for the first quarter-final game while keeping all other Play buttons disabled.
11. On clicking the Play button for the first quarter-final game:
12. Assign the winning team to the semi-final.
13. Change colors of teams to show the winning the losing teams.
14. Note that there should not be a tied game, as it is a knockout stage.
15. After this, disable the Play button for the first quarter-final match and enable the Play button for the second quarter-final match.
16. Repeat these steps for all the matches up to the final game.
17. The Reset Game button resets all the controls back to their default behaviours.
18. Clicking the Draw Teams button again randomly draws teams for quarter-finals.
19. Change the icon in the title bar of the form from a default icon to something else.
20. Disable the Maximum button in the title bar.
21. Give proper names to all the controls used in the form, including the form itself.
22. Customize the form according to your own imagination. You can change the background color, fonts, font color, team flags, or whatever you can think of.