Deck 10: Programming Based on Events

Full screen (f)
exit full mode
Question
When you define a delegate type,you identify what types of methods the delegate represents.
Use Space or
up arrow
down arrow
to flip the card.
Question
Associating a method in your program to an event is called delegating the event.
Question
Both the ComboBox and ListBox objects inherit members from the Control class.
Question
Delegates work well in an event-driven arena because the same delegate can call different methods during runtime.
Question
ComboBox objects save space on a form through their use of a predefined size property.
Question
Like other classes,an instance of a delegate is called an object.
Question
The delegate definition does not include a body. All that is included is the heading.
Question
The delegate signature indicates what the method signatures must look like if they are to be referenced by the delegate.
Question
The Items property can be used to set the initial values for a ListBox object. The Items editor is opened when you click the ellipsis to the right of the Collection property in the Properties window.
Question
Since each delegate wraps a single method,there must be a one-to-one correspondence between the method and its delegate.
Question
The this keyword is used to indicate the current instance of the delegate.
Question
The ListBox control object can hold data of string type only.
Question
To add functionality to the ListBox control object,you register the DoubleClick( )event handler method.
Question
The declaration for a delegate looks more like a method declaration than a class definition.
Question
Multiple selections cannot be made from a ListBox control object.
Question
ListBox objects have an added feature in that they contain their own text box field as part of the object.
Question
To set the background color for the ListBox control,use the Back property.
Question
Use the Format>Align menu options to line up associated controls so controls are consistently placed in the same row or column.
Question
The TabControl object displays multiple tabs,like dividers in a notebook or labels in a set of folders in a filing cabinet.
Question
The Items,SelectedItems,and SelectedIndices properties are useful for retrieving selected items from the ListBox object.
Question
Menus offer the advantage of requiring less real estate on the screen.
Question
A test plan to verify the accuracy of the application should be designed before coding the application.
Question
One of the advantages of a ListBox object over other types of objects used for input is ____.

A) it can be used for both input and output
B) it can be used for both console and Windows applications
C) an event handler method can be registered
D) multiple selections can be made
Question
To wire a method to an event,such as a menu selection,means you associating multiple methods to the event.
Question
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 ____.

A) wiring an event
B) delegating an event
C) balancing an event
D) referencing an event
Question
Included as part of .Visual Studio are a number of preconfigured dialog boxes Find and Replace,Spell Checker and File Save.
Question
Double-clicking on the ListBox control registers which default event?

A) SelectedIndexChanged
B) Click event
C) DoubleClick
D) ItemChanged
Question
Delegate signatures differ from method signatures in that the delegate also includes its ____.

A) name
B) return type
C) number of parameters
D) type of parameters
Question
Delegates are special types of .NET classes whose instances store ____.

A) references to actual data.
B) data
C) references to methods
D) methods
Question
To add an icon for the application,add a PictureBox object and set the Image property to the desired jpg image.
Question
A ____ control offers the advantage of multiple selections and the opportunity to add or remove items dynamically at runtime.

A) Button
B) TextBox
C) ListBox
D) Label
Question
An instance of the delegate class is called a(n)____.

A) object
B) instance
C) variable
D) delegate
Question
TabControl objects,which are placed on top of button objects,enable multiple tabs to appear on a form.
Question
A number of objects can be wired to the same event-handler method.
Question
The Form object also has a BackgroundImage property that can be set to display a
picture on the background.Select the form and then use the Properties window to browse to a location that contains the file.
Question
Delegate declarations resembles ____ declarations.

A) method
B) variable
C) object
D) data
Question
When the delegate wraps more than one method,it is called a(n)____ delegate.

A) multicast
B) multiple
C) multi-referenced
D) multi-event
Question
SelectedItems and ____ properties can be used to retrieve items from a ListBox object.

A) Selected
B) SelectedItem
C) Name
D) ListBoxItems
Question
A KeyPress( )event is fired with each and every keystroke.
Question
The default setting for the ComboBox object's DropDownStyle property,is DropDown.Retaining this setting prohibits new text from being entered into the ComboBox.
Question
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.

A) underscore (_ )
B) hyphen (-)
C) ampersand (&)
D) asterisk (*)
Question
The default event-handler method for the ComboBox control is ____.

A) KeyPress( )
B) SelectedIndexChanged( )
C) Click( )
D) Changed( )
Question
An added value of ComboBox objects is that compared to a ListBox object they ____.

A) save space on a form
B) enable input and output of data
C) can be used for multiple selections
D) can have events of interest registered
Question
What does the following statement do? this.BackColor = System.Drawing.Color.Blue;

A) sets the form color to Blue
B) sets whichever control you have selected to Blue
C) sets all of the controls on the form to Blue
D) sets the drawings on the form to Blue
Question
With Windows Presentation Foundation (WPF)applications,____.

A) you see completely different controls available in the toolbox
B) drag and drop is not an option for placing controls on the form
C) less sophisticated multimedia options are available
D) a new XAML file, resembling an HTML file, is added to the solution
Question
To retrieve multiple selections from a ListBox control,you can use all of the following properties EXCEPT ____.

A) SelectedItems
B) SelectedIndices
C) Text
D) Items
Question
In order for event handlers to be called using delegates,the delegate must ____.

A) be declared with a return type of void
B) include at least two parameter arguments representing the event and object
C) be instantiated in the application as a delegate
D) maintain a list of the registered event handlers for the event
Question
One way to convert item objects retrieved from ListBoxes to strings for displaying is to use the Text property for retrieval.Another option is to retrieve the values as objects using the SelectedItem property and invoke the ____________ method.
Question
Which of the following is one of the pre-configured dialog boxes that can be added to an application?

A) StyleDialog
B) ViewDialog
C) StyleDialog
D) ColorDialog
Question
ComboBox objects have an added feature over the ListBox controls in that ____.

A) ComboBox objects contain their own text box field
B) Scrollbars are included with ComboBox objects
C) ComboBox objects enable multiple selections
D) ComboBox objects can be used for input and output
Question
What is the name of the default event handler method for RadioButton and CheckBox objects?

A) Click( )
B) SelectedIndexChanged( )
C) KeyPress( )
D) CheckChanged( )
Question
____ objects usually appear as small boxes that allow users to make a yes/no selection.

A) RadioButton
B) ListBox
C) CheckBox
D) ComboBox
Question
To retrieve data from a ListBox control as string data,use the ____ property.

A) SelectedItem
B) SelectedItems
C) SelectedIndices
D) Text
Question
You change the appearance of the tabs for a TabControl object using the ____ Collection Editor.

A) TabPage
B) Controls
C) Properties
D) Text
Question
Which property is used with the PictureBox control to associate an actual picture to the control?

A) Resource
B) Image
C) Icon
D) Picture
Question
To create mutually exclusive options use ____.

A) a GroupBox object with RadioButton objects
B) a GroupBox object with CheckBox objects
C) either a RadioButton and CheckBox object
D) a ListBox object
Question
The SelectionMode property of the ListBox object ____.

A) enables multiple selections to be made
B) determines whether you can use the mouse or the keyboard
C) sets which of the items is initially selected
D) determines whether use selections can be added
Question
With a ListBox of numbers,the SelectedItem property returns ____.

A) the one selected in an int or double format.
B) an object representing the one selected.
C) a string representing the one selected.
D) the index of the one selected.
Question
The ____ class in the System.Windows.Forms namespace enables you to add more functionality to your application by offering additional user options,such as adding layers of menus.

A) MenuStrip
B) MenuDialog
C) Main
D) DialogMenu
Question
To have the ListBox or ComboBox Items arranged in alphabetical order ____.

A) the values must be originally type in the desired order.
B) use a drag and drop approach move the items into their correct order.
C) set the Sorted property to true.
D) set the Ordered property to ascending or descending.
Question
____________ objects have an added feature over a ListBox objects that they contain their own text box field as part of the object,but they allow only a single selection to be made.
Question
All event-handler take two parameters.The first parameter,object sender,represents the source that raises the event,and the second parameter is the data for the event;thus,they normally have the same ____________.
Question
In order to add values to the ListBox at run time,invoke the Add( )method on the ____________ property.
Question
The ListBox ____________ property has selection values of MultiSimple,MultiExtended,None and One.
Question
The ____________ event fires when a key is pressed while the control has focus.
Question
Objects like colorDialog,fontDialog,ToolTip and MenuStrip are added to the ____________ for the application when they are dragged and dropped onto the form.
Question
The ListBox object allows multiple options for retrieving selections.When multiple selections are made,to retrieve all of the selections,the ____________ property cannot be used since it retrieves a single selection,the first one selected.
Question
The ____________ method associated with the predefined dialog classes,like FontDialog or ColorDialog causes the dialog box to be displayed.
Question
You can assign a(n)____________ to controls,such as text boxes or menu items,so that text is displayed when the cursor is rested on top of the component.
Question
A(n)____________ is an underlined character in the text of an menu item or on the label of a control such as a button that enables user to click the button,without using the mouse,by pressing the Alt key in combination with the predefined character.
Question
To add functionality to a control such as a Button or ListBox,you need to ____________ for it.
Question
The default event-handler method for CheckBox objects is ____________.
Question
The ____________ property can be set for RadioButton controls to indicate which button is initially selected.
Question
____________ controls can be used to display a list of items from which the user can make single or multiple selections.A scroll bar is automatically added to the control if the total number of items exceeds the number that can be displayed.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/74
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 10: Programming Based on Events
1
When you define a delegate type,you identify what types of methods the delegate represents.
True
2
Associating a method in your program to an event is called delegating the event.
False
3
Both the ComboBox and ListBox objects inherit members from the Control class.
True
4
Delegates work well in an event-driven arena because the same delegate can call different methods during runtime.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
5
ComboBox objects save space on a form through their use of a predefined size property.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
6
Like other classes,an instance of a delegate is called an object.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
7
The delegate definition does not include a body. All that is included is the heading.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
8
The delegate signature indicates what the method signatures must look like if they are to be referenced by the delegate.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
9
The Items property can be used to set the initial values for a ListBox object. The Items editor is opened when you click the ellipsis to the right of the Collection property in the Properties window.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
10
Since each delegate wraps a single method,there must be a one-to-one correspondence between the method and its delegate.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
11
The this keyword is used to indicate the current instance of the delegate.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
12
The ListBox control object can hold data of string type only.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
13
To add functionality to the ListBox control object,you register the DoubleClick( )event handler method.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
14
The declaration for a delegate looks more like a method declaration than a class definition.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
15
Multiple selections cannot be made from a ListBox control object.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
16
ListBox objects have an added feature in that they contain their own text box field as part of the object.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
17
To set the background color for the ListBox control,use the Back property.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
18
Use the Format>Align menu options to line up associated controls so controls are consistently placed in the same row or column.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
19
The TabControl object displays multiple tabs,like dividers in a notebook or labels in a set of folders in a filing cabinet.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
20
The Items,SelectedItems,and SelectedIndices properties are useful for retrieving selected items from the ListBox object.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
21
Menus offer the advantage of requiring less real estate on the screen.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
22
A test plan to verify the accuracy of the application should be designed before coding the application.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
23
One of the advantages of a ListBox object over other types of objects used for input is ____.

A) it can be used for both input and output
B) it can be used for both console and Windows applications
C) an event handler method can be registered
D) multiple selections can be made
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
24
To wire a method to an event,such as a menu selection,means you associating multiple methods to the event.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
25
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 ____.

A) wiring an event
B) delegating an event
C) balancing an event
D) referencing an event
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
26
Included as part of .Visual Studio are a number of preconfigured dialog boxes Find and Replace,Spell Checker and File Save.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
27
Double-clicking on the ListBox control registers which default event?

A) SelectedIndexChanged
B) Click event
C) DoubleClick
D) ItemChanged
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
28
Delegate signatures differ from method signatures in that the delegate also includes its ____.

A) name
B) return type
C) number of parameters
D) type of parameters
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
29
Delegates are special types of .NET classes whose instances store ____.

A) references to actual data.
B) data
C) references to methods
D) methods
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
30
To add an icon for the application,add a PictureBox object and set the Image property to the desired jpg image.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
31
A ____ control offers the advantage of multiple selections and the opportunity to add or remove items dynamically at runtime.

A) Button
B) TextBox
C) ListBox
D) Label
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
32
An instance of the delegate class is called a(n)____.

A) object
B) instance
C) variable
D) delegate
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
33
TabControl objects,which are placed on top of button objects,enable multiple tabs to appear on a form.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
34
A number of objects can be wired to the same event-handler method.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
35
The Form object also has a BackgroundImage property that can be set to display a
picture on the background.Select the form and then use the Properties window to browse to a location that contains the file.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
36
Delegate declarations resembles ____ declarations.

A) method
B) variable
C) object
D) data
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
37
When the delegate wraps more than one method,it is called a(n)____ delegate.

A) multicast
B) multiple
C) multi-referenced
D) multi-event
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
38
SelectedItems and ____ properties can be used to retrieve items from a ListBox object.

A) Selected
B) SelectedItem
C) Name
D) ListBoxItems
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
39
A KeyPress( )event is fired with each and every keystroke.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
40
The default setting for the ComboBox object's DropDownStyle property,is DropDown.Retaining this setting prohibits new text from being entered into the ComboBox.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
41
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.

A) underscore (_ )
B) hyphen (-)
C) ampersand (&)
D) asterisk (*)
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
42
The default event-handler method for the ComboBox control is ____.

A) KeyPress( )
B) SelectedIndexChanged( )
C) Click( )
D) Changed( )
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
43
An added value of ComboBox objects is that compared to a ListBox object they ____.

A) save space on a form
B) enable input and output of data
C) can be used for multiple selections
D) can have events of interest registered
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
44
What does the following statement do? this.BackColor = System.Drawing.Color.Blue;

A) sets the form color to Blue
B) sets whichever control you have selected to Blue
C) sets all of the controls on the form to Blue
D) sets the drawings on the form to Blue
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
45
With Windows Presentation Foundation (WPF)applications,____.

A) you see completely different controls available in the toolbox
B) drag and drop is not an option for placing controls on the form
C) less sophisticated multimedia options are available
D) a new XAML file, resembling an HTML file, is added to the solution
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
46
To retrieve multiple selections from a ListBox control,you can use all of the following properties EXCEPT ____.

A) SelectedItems
B) SelectedIndices
C) Text
D) Items
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
47
In order for event handlers to be called using delegates,the delegate must ____.

A) be declared with a return type of void
B) include at least two parameter arguments representing the event and object
C) be instantiated in the application as a delegate
D) maintain a list of the registered event handlers for the event
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
48
One way to convert item objects retrieved from ListBoxes to strings for displaying is to use the Text property for retrieval.Another option is to retrieve the values as objects using the SelectedItem property and invoke the ____________ method.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
49
Which of the following is one of the pre-configured dialog boxes that can be added to an application?

A) StyleDialog
B) ViewDialog
C) StyleDialog
D) ColorDialog
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
50
ComboBox objects have an added feature over the ListBox controls in that ____.

A) ComboBox objects contain their own text box field
B) Scrollbars are included with ComboBox objects
C) ComboBox objects enable multiple selections
D) ComboBox objects can be used for input and output
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
51
What is the name of the default event handler method for RadioButton and CheckBox objects?

A) Click( )
B) SelectedIndexChanged( )
C) KeyPress( )
D) CheckChanged( )
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
52
____ objects usually appear as small boxes that allow users to make a yes/no selection.

A) RadioButton
B) ListBox
C) CheckBox
D) ComboBox
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
53
To retrieve data from a ListBox control as string data,use the ____ property.

A) SelectedItem
B) SelectedItems
C) SelectedIndices
D) Text
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
54
You change the appearance of the tabs for a TabControl object using the ____ Collection Editor.

A) TabPage
B) Controls
C) Properties
D) Text
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
55
Which property is used with the PictureBox control to associate an actual picture to the control?

A) Resource
B) Image
C) Icon
D) Picture
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
56
To create mutually exclusive options use ____.

A) a GroupBox object with RadioButton objects
B) a GroupBox object with CheckBox objects
C) either a RadioButton and CheckBox object
D) a ListBox object
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
57
The SelectionMode property of the ListBox object ____.

A) enables multiple selections to be made
B) determines whether you can use the mouse or the keyboard
C) sets which of the items is initially selected
D) determines whether use selections can be added
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
58
With a ListBox of numbers,the SelectedItem property returns ____.

A) the one selected in an int or double format.
B) an object representing the one selected.
C) a string representing the one selected.
D) the index of the one selected.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
59
The ____ class in the System.Windows.Forms namespace enables you to add more functionality to your application by offering additional user options,such as adding layers of menus.

A) MenuStrip
B) MenuDialog
C) Main
D) DialogMenu
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
60
To have the ListBox or ComboBox Items arranged in alphabetical order ____.

A) the values must be originally type in the desired order.
B) use a drag and drop approach move the items into their correct order.
C) set the Sorted property to true.
D) set the Ordered property to ascending or descending.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
61
____________ objects have an added feature over a ListBox objects that they contain their own text box field as part of the object,but they allow only a single selection to be made.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
62
All event-handler take two parameters.The first parameter,object sender,represents the source that raises the event,and the second parameter is the data for the event;thus,they normally have the same ____________.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
63
In order to add values to the ListBox at run time,invoke the Add( )method on the ____________ property.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
64
The ListBox ____________ property has selection values of MultiSimple,MultiExtended,None and One.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
65
The ____________ event fires when a key is pressed while the control has focus.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
66
Objects like colorDialog,fontDialog,ToolTip and MenuStrip are added to the ____________ for the application when they are dragged and dropped onto the form.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
67
The ListBox object allows multiple options for retrieving selections.When multiple selections are made,to retrieve all of the selections,the ____________ property cannot be used since it retrieves a single selection,the first one selected.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
68
The ____________ method associated with the predefined dialog classes,like FontDialog or ColorDialog causes the dialog box to be displayed.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
69
You can assign a(n)____________ to controls,such as text boxes or menu items,so that text is displayed when the cursor is rested on top of the component.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
70
A(n)____________ is an underlined character in the text of an menu item or on the label of a control such as a button that enables user to click the button,without using the mouse,by pressing the Alt key in combination with the predefined character.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
71
To add functionality to a control such as a Button or ListBox,you need to ____________ for it.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
72
The default event-handler method for CheckBox objects is ____________.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
73
The ____________ property can be set for RadioButton controls to indicate which button is initially selected.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
74
____________ controls can be used to display a list of items from which the user can make single or multiple selections.A scroll bar is automatically added to the control if the total number of items exceeds the number that can be displayed.
Unlock Deck
Unlock for access to all 74 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 74 flashcards in this deck.