c# Season 2 chapter 9 part 2
The ____ method of the Control class sets the input focus.
Focus()
It is important to name the button object, because once named ____.
program statements can be written to reference it.
With Windows applications, many different types of events can be fired. As a developer, you
must write event handlers for all of the possible events.
True or False?
False
A good design principle to follow when developing Windows applications is ____.
to keep data entry to a minimum
Probably the most commonly used control for both input and output is the button because it adds additional functionality to an application.
True or False?
False
Visual Studio automatically imports the System.Windows.Forms namespace for you when you create a Windows Application Project using the IDE.
True or False?
True
Instead of calling on the operating system with a request, as console applications do, Windows applications receive messages from the operating system that an event has occurred.
True or False?
True
Button, Label, TextBox, ComboBox, MenuStrip, ListBox, CheckBox, RadioButton, and MonthCalendar are all examples of classes.
True or False ?
True
Avoid using bright colors (such as reds), especially for backgrounds because they can result in user eye fatigue.
True or False ?
True
In Visual Studio, the ____ window is used to view and change the design time properties and events of an object.
Properties
When you create a new Windows application using Visual Studio, if you do not see the constructed form, but instead see the program statements, you have selected the wrong template and need to begin again.
True or False?
False
Windows forms and controls offer a wide variety of changeable properties including ____.
a. Font
b. Color
c. all of the above
d. Text
All of the Above
When you design Windows applications using Visual Studio, you must be sure to add program statements to call the Dispose( ) method to clean up or release unused resources back to the operating system.
True or False ?
False
The field of research that concentrates on the design and implementation of interactive computing systems is called?
Human Computer Interaction (HCI)
After a button click event is registered, the associated method is called_____?
automatically when the button is clicked
The ____ property is used to determine whether a control is the one currently selected.
Focused
When a program is placed in a process loop, the program cannot be minimized, resized, or closed like other Windows applications.
True or False?
False