c# SEASON TWO FINAL CHAP 15 finale pt 2
The front end portion of the program that the user sees and responds to is called the ____.
Interface
What are objects, such as buttons, menus, and labels, that can display and respond to user interaction, called?
Controls
Most of the classes used to develop Windows-based applications are organized in which namespace?
System.Windows.Forms
The class heading that is generated by Visual Studio for Windows applications includes a colon (:) following the class name. The identifier following the colon is the ____.
base class
A derived class ____ methods of another class.
Inherits
Which property is used to set or get the caption of the title bar for Windows applications?
Text
In a Windows application, Application.Run(winForm); ____.
places the application in a process loop so that it receives messages from the operating system
The field of research that concentrates on the design and implementation of interactive computing systems is called ____.
Human Computer Interaction (HCI)
Which of the following is an issue that you should consider and incorporate into your interfaces?
be consistent with placement of items
The top-level class used as a container to hold other controls for an application is called a ____.
Form
In Visual Studio, the ____ window is used to view and change the design time properties and events of an object.
Properties
The preprocess directive #region can be added in the program to ____.
mark sections of code that can be expanded or collapsed
The ____ method of the Control class sets the input focus.
Focus( )
To reduce the chances that typing errors will corrupt your solutions, a good design principle to follow is ____.
not allow users enter values that can be calculated
Probably the most commonly used control for input and output is the ____.
TextBox
The method that converts all characters entered to and from their uppercase or lowercase equivalent is ____.
CharacterCasing
Double-clicking on the form when you are using the Form Designer brings up the Code Editor and also ____.
adds a form load method heading
The ____ property is used to determine whether a control is the one currently selected.
Focused
Which TextBox property can be set to enable several lines of data to be entered by the user?
MultiLine
Which property can be set to indicate whether text in the TextBox is read-only or not?
ReadOnly
After a button click event is registered, the associated method is called ____.
automatically when the button is clicked.