c# SEASON TWO FINAL CHAP 15 finale pt 3
After a button click event is registered, the associated method is called ____.
automatically when the button is clicked.
It is important to name the button object, because once named ____.
program statements can be written to reference it.
Windows forms and controls offer a wide variety of changeable properties including ____.
Text
Color
Font
The static method that stops the application and closes all of its windows is ____.
Application.Exit( )
The Form property used to set the title bar on the Windows form is ____.
Text
Using the tools available from the FORMAT menu can greatly reduce your
development time. All of the following are menu options EXCEPT ____.
Attach to Process
A good design principle to follow when developing Windows applications is ____.
to keep data entry to a minimum
Delegates are special types of .NET classes whose instances store ____.
references to methods
Delegate declarations resembles ____ declarations.
Method
Delegate signatures differ from method signatures in that the delegate also includes its ____.
Return type
An instance of the delegate class is called a(n) ____.
Delegate
When the delegate wraps more than one method, it is called a(n) ____ delegate.
Multicast
The process that includes identifying an event, such as a button click as being of interest, and associating a method to be executed when the event occurs describes ____.
Wiring an event
A ____ control offers the advantage of multiple selections and the opportunity to add or remove items dynamically at runtime.
ListBox
Double-clicking on the ListBox control registers which default event?
SelectedIndexChanged
One of the advantages of a ListBox object over other types of objects used for input is ____.
multiple selections can be made
SelectedItems and ____ properties can be used to retrieve items from a ListBox object.
SelectedItem
ComboBox objects have an added feature over the ListBox controls in that ____.
ComboBox objects contain their own text box field
The default event-handler method for the ComboBox control is ____.
SelectedIndexChanged( )
You can add a shortcut to a menu by preceding one of the characters in the menu name with a(n) ____. This places an underline under the next character typed.
ampersand (&)
____ objects usually appear as small boxes that allow users to make a yes/no selection.
CheckBox
To create mutually exclusive options use ____.
a GroupBox object with RadioButton objects
In order for event handlers to be called using delegates, the delegate must ____.
maintain a list of the registered event handlers for the event
To have the ListBox or ComboBox Items arranged in alphabetical order ____.
set the Sorted property to true.
With a ListBox of numbers, the SelectedItem property returns ____.
an object representing the one selected.
To retrieve data from a ListBox control as string data, use the ____ property.
Text
An added value of ComboBox objects is that compared to a ListBox object they ____.
save space on a form
You change the appearance of the tabs for a TabControl object using the ____ Collection Editor.
TabPage