Workshop
The Workshop is designed to help you anticipate possible questions, review what you've learned, and get you thinking about how to put your knowledge into practice.
Quiz
-
What type of Visual C# project creates a standard Windows program?
-
What window is used to change the attributes (location, size, and so on) of a form or control in the IDE?
-
How do you access a control's default event (code)?
-
What property of a picture box do you set to display an image?
-
What is the default event for a button control?
Answers
-
Windows Forms Application
-
The Properties window
-
Double-click the control in the designer
-
The Image property
-
The Click event
Exercises
-
Change your Picture Viewer program so that the user can also locate and select GIF files. (Hint: Change the Filter property of the OpenFileDialog control.)
-
Create a new project with a new form. Create two buttons on the form, one above the other. Next, change their position so that they appear next to each other.