Deck 12: Using Controls

Full screen (f)
exit full mode
Question
A LinkLabel is similar to a Label in that it is a parent of Label .
Use Space or
up arrow
down arrow
to flip the card.
Question
C# allows you to create custom colors.
Question
A ____ is similar to a ListBox but with check boxes appearing to the left of each item.

A) CheckBox
B) ButtonBox
C) ComboBox
D) CheckedListBox
Question
A ____ is similar to a ListBox , except that it displays an additional editing field to allow the user to select from the list or to enter new text.

A) ComboBox
B) CheckBox
C) CheckedListBox
D) ComboListBox
Question
The ____ class provides the definitions for GUI objects.

A) Control
B) Object
C) Widget
D) Gadget
Question
____ objects are GUI widgets the user can click to select an option; any number of these can be selected at the same time.

A) ListBox
B) RadioButton
C) CheckBox
D) CheckedListBox
Question
The default text color for a LinkLabel is purple.
Question
You use the ____ class to change the appearance of printed text on your Form s.

A) Text
B) ForeText
C) Font
D) FontText
Question
The ____ Control allows you to retrieve date information.

A) Calendar
B) MonthCalendar
C) DateCalendar
D) CalendarPicker
Question
When designing a Form , you will usually use the ____ design features in the IDE instead of typing code statements.

A) color
B) drag-and-drop
C) button
D) font
Question
The ListBox provides a Boolean ____ property, which you can set to display items in columns instead of in a straight vertical list.

A) SingleColumn
B) MoreColumn
C) OneColumn
D) MultiColumn
Question
CheckBox and RadioButton objects have a ____ method that is called when the object is clicked by the user.

A) Changed()
B) ClickedChanged()
C) CheckedChanged()
D) ValueChanged()
Question
A ____ provides the capability to link the user to other sources, such as Web pages or files.

A) Label
B) FileLabel
C) ResourceLabel
D) LinkLabel
Question
A ____ is an object you can instantiate on a remote computer so that you can manipulate a reference to the object rather than a local copy of the object.

A) ByRefObject
B) RemoteRefObject
C) RemoteObject
D) MarshalByRefObject
Question
____ objects are GUI widgets the user can click to select an option; only one of a group can be selected at a time.

A) CheckButton
B) RadioButton
C) ListBox
D) RadioCheckedButton
Question
The ____ Control displays a month calendar when the down arrow is selected.

A) MonthCalendar
B) CalendarPicker
C) DateTimePicker
D) DatePicker
Question
If you precede a letter in the Text property value of a ButtonBase object with a(n) ____, that letter acts as an access key.

A) &
B) %
C) $
D) #
Question
Each Control has more than 80 public properties.
Question
When you size a ListBox so that all the items cannot be displayed at the same time, a scroll bar is provided automatically on the side.
Question
ListBox , ComboBox , and CheckedListBox objects all allow users to select choices from a list. These three classes descend from ____.

A) ListBase
B) ListControl
C) BaseList
D) List
Question
Setting the ____ property causes a Control to remain at a fixed distance from the side of a container when the user resizes it.

A) Dock
B) Padding
C) Anchor
D) Filling
Question
A(n) ____________________ is a Control in which you can display graphics from a bitmap, icon, JPEG, GIF, or other image file type.
Question
In a MenuStrip , if you create each main menu item with a(n) ____ in front of a unique letter, then the user can press Alt and the given letter to activate the menu choice as an alternative to clicking it with the mouse.

A) %
B) $
C) &
D) >
Question
What are some of the methods that you can use with the SelectionStart and SelectionEnd properties of MonthCalendar to calculate new dates? For example, if you wanted to calculate the date of an event that will occur 10 days from the SelectionStart date, what MonthCalendar method could you use?
Question
SelectionStart and SelectionEnd are properties of the MonthCalendar class. What methods can be applied to these properties to control the display of a date? What other factors influence the format in which dates are displayed?
Question
When designing a MenuStrip control, the programmer should follow conventional menu order; for example, a Help option is usually located ____ of the main menu.

A) on the far-left side
B) in the File submenu
C) in the Preferences submenu
D) on the far-right side
Question
What are some of the commonly used LinkLabel properties, and what is the default event generated when the link is clicked by a user?
Question
The ____________________ property of the PictureBox control sets the image that appears in the control.
Question
When working with a Form in the IDE, how do you place new Control s on the Form , and how can you adjust them precisely to align with existing Control s?
Question
When using programs or visiting Internet sites, you encounter and use many other interactive ____________________-elements of graphical interfaces that allow you to interact with programs-such as scroll bars, check boxes, and radio buttons.
Question
Explain the selection options that can be controlled by setting the SelectionMode property of a ListBox .
Question
How would you declare a named instance of a Font class, and what arguments can be used within the constructor? Show the declaration for a font named fancyFont that is size 24, bold, underlined, and Helvetica.
Question
What are some of the commonly used PictureBox properties and the default event for a PictureBox ?
Question
Setting the ____ property attaches a Control to the side of a container so that the Control stretches when the container's size is adjusted.

A) Anchor
B) Dock
C) Padding
D) Filling
Question
The ____________________ class contains a wide variety of predefined Color s that you can use with your Control s.
Question
When you drag multiple Control s onto a Form , blue ____ appear and help you align new Control s with others already in place.

A) dots
B) dotted lines
C) grip angles
D) snap lines
Question
What are some of the commonly used CheckBox and RadioButton properties, and the default event for which a method shell is generated for these classes in the IDE? If you wanted a user to select which pizza toppings he or she wanted from a group of possible toppings, which Control would you use and why?
Question
When filling in the items in a MenuStrip control, you can double-click an entry to generate a ____ method that will execute if the user clicks on the entry.

A) Change()
B) SetSelected()
C) Click()
D) SelectedIndexChanged()
Question
When you create a Form in the Visual Studio IDE, the IDE automatically generates code to support the Form and any Control s that you place on the Form . What do you know about the Form under development given the following snippet of code generated by the IDE?
private void InitializeComponent()
{
this .label1 = new System.Windows.Forms.Label();
this .okButton = new System Windows.Forms.Button();
...
}
Question
Control objects such as Form s and Button s, like all other objects in C#, ultimately derive from the ____________________ class.
Question
What are the similarities and differences between using a GroupBox and using a Panel to group related Control s on a Form ?
Question
Match between columns
The method executed when a click event is fired from a LinkLabel
Control.Capture
The method executed when a click event is fired from a LinkLabel
Component
The method executed when a click event is fired from a LinkLabel
ListBox
The method executed when a click event is fired from a LinkLabel
Items.Count
The method executed when a click event is fired from a LinkLabel
MenuStrip
The method executed when a click event is fired from a LinkLabel
LinkClicked()
The method executed when a click event is fired from a LinkLabel
DateChanged()
The method executed when a click event is fired from a LinkLabel
Dock
The method executed when a click event is fired from a LinkLabel
Anchor
The default event for MonthCalendar
Control.Capture
The default event for MonthCalendar
Component
The default event for MonthCalendar
ListBox
The default event for MonthCalendar
Items.Count
The default event for MonthCalendar
MenuStrip
The default event for MonthCalendar
LinkClicked()
The default event for MonthCalendar
DateChanged()
The default event for MonthCalendar
Dock
The default event for MonthCalendar
Anchor
Gets or sets a value indicating whether the control has captured the mouse
Control.Capture
Gets or sets a value indicating whether the control has captured the mouse
Component
Gets or sets a value indicating whether the control has captured the mouse
ListBox
Gets or sets a value indicating whether the control has captured the mouse
Items.Count
Gets or sets a value indicating whether the control has captured the mouse
MenuStrip
Gets or sets a value indicating whether the control has captured the mouse
LinkClicked()
Gets or sets a value indicating whether the control has captured the mouse
DateChanged()
Gets or sets a value indicating whether the control has captured the mouse
Dock
Gets or sets a value indicating whether the control has captured the mouse
Anchor
A property that holds the number of items in a ListBox
Control.Capture
A property that holds the number of items in a ListBox
Component
A property that holds the number of items in a ListBox
ListBox
A property that holds the number of items in a ListBox
Items.Count
A property that holds the number of items in a ListBox
MenuStrip
A property that holds the number of items in a ListBox
LinkClicked()
A property that holds the number of items in a ListBox
DateChanged()
A property that holds the number of items in a ListBox
Dock
A property that holds the number of items in a ListBox
Anchor
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
Control.Capture
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
Component
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
ListBox
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
Items.Count
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
MenuStrip
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
LinkClicked()
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
DateChanged()
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
Dock
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
Anchor
Displays a list of items that the user can select by clicking
Control.Capture
Displays a list of items that the user can select by clicking
Component
Displays a list of items that the user can select by clicking
ListBox
Displays a list of items that the user can select by clicking
Items.Count
Displays a list of items that the user can select by clicking
MenuStrip
Displays a list of items that the user can select by clicking
LinkClicked()
Displays a list of items that the user can select by clicking
DateChanged()
Displays a list of items that the user can select by clicking
Dock
Displays a list of items that the user can select by clicking
Anchor
A class that provides containment and cleanup for other objects
Control.Capture
A class that provides containment and cleanup for other objects
Component
A class that provides containment and cleanup for other objects
ListBox
A class that provides containment and cleanup for other objects
Items.Count
A class that provides containment and cleanup for other objects
MenuStrip
A class that provides containment and cleanup for other objects
LinkClicked()
A class that provides containment and cleanup for other objects
DateChanged()
A class that provides containment and cleanup for other objects
Dock
A class that provides containment and cleanup for other objects
Anchor
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
Control.Capture
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
Component
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
ListBox
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
Items.Count
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
MenuStrip
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
LinkClicked()
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
DateChanged()
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
Dock
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
Anchor
A horizontal list of general options that appears under the title bar of a Form or Window
Control.Capture
A horizontal list of general options that appears under the title bar of a Form or Window
Component
A horizontal list of general options that appears under the title bar of a Form or Window
ListBox
A horizontal list of general options that appears under the title bar of a Form or Window
Items.Count
A horizontal list of general options that appears under the title bar of a Form or Window
MenuStrip
A horizontal list of general options that appears under the title bar of a Form or Window
LinkClicked()
A horizontal list of general options that appears under the title bar of a Form or Window
DateChanged()
A horizontal list of general options that appears under the title bar of a Form or Window
Dock
A horizontal list of general options that appears under the title bar of a Form or Window
Anchor
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/42
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 12: Using Controls
1
A LinkLabel is similar to a Label in that it is a parent of Label .
False
2
C# allows you to create custom colors.
True
3
A ____ is similar to a ListBox but with check boxes appearing to the left of each item.

A) CheckBox
B) ButtonBox
C) ComboBox
D) CheckedListBox
D
4
A ____ is similar to a ListBox , except that it displays an additional editing field to allow the user to select from the list or to enter new text.

A) ComboBox
B) CheckBox
C) CheckedListBox
D) ComboListBox
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
5
The ____ class provides the definitions for GUI objects.

A) Control
B) Object
C) Widget
D) Gadget
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
6
____ objects are GUI widgets the user can click to select an option; any number of these can be selected at the same time.

A) ListBox
B) RadioButton
C) CheckBox
D) CheckedListBox
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
7
The default text color for a LinkLabel is purple.
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
8
You use the ____ class to change the appearance of printed text on your Form s.

A) Text
B) ForeText
C) Font
D) FontText
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
9
The ____ Control allows you to retrieve date information.

A) Calendar
B) MonthCalendar
C) DateCalendar
D) CalendarPicker
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
10
When designing a Form , you will usually use the ____ design features in the IDE instead of typing code statements.

A) color
B) drag-and-drop
C) button
D) font
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
11
The ListBox provides a Boolean ____ property, which you can set to display items in columns instead of in a straight vertical list.

A) SingleColumn
B) MoreColumn
C) OneColumn
D) MultiColumn
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
12
CheckBox and RadioButton objects have a ____ method that is called when the object is clicked by the user.

A) Changed()
B) ClickedChanged()
C) CheckedChanged()
D) ValueChanged()
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
13
A ____ provides the capability to link the user to other sources, such as Web pages or files.

A) Label
B) FileLabel
C) ResourceLabel
D) LinkLabel
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
14
A ____ is an object you can instantiate on a remote computer so that you can manipulate a reference to the object rather than a local copy of the object.

A) ByRefObject
B) RemoteRefObject
C) RemoteObject
D) MarshalByRefObject
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
15
____ objects are GUI widgets the user can click to select an option; only one of a group can be selected at a time.

A) CheckButton
B) RadioButton
C) ListBox
D) RadioCheckedButton
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
16
The ____ Control displays a month calendar when the down arrow is selected.

A) MonthCalendar
B) CalendarPicker
C) DateTimePicker
D) DatePicker
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
17
If you precede a letter in the Text property value of a ButtonBase object with a(n) ____, that letter acts as an access key.

A) &
B) %
C) $
D) #
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
18
Each Control has more than 80 public properties.
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
19
When you size a ListBox so that all the items cannot be displayed at the same time, a scroll bar is provided automatically on the side.
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
20
ListBox , ComboBox , and CheckedListBox objects all allow users to select choices from a list. These three classes descend from ____.

A) ListBase
B) ListControl
C) BaseList
D) List
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
21
Setting the ____ property causes a Control to remain at a fixed distance from the side of a container when the user resizes it.

A) Dock
B) Padding
C) Anchor
D) Filling
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
22
A(n) ____________________ is a Control in which you can display graphics from a bitmap, icon, JPEG, GIF, or other image file type.
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
23
In a MenuStrip , if you create each main menu item with a(n) ____ in front of a unique letter, then the user can press Alt and the given letter to activate the menu choice as an alternative to clicking it with the mouse.

A) %
B) $
C) &
D) >
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
24
What are some of the methods that you can use with the SelectionStart and SelectionEnd properties of MonthCalendar to calculate new dates? For example, if you wanted to calculate the date of an event that will occur 10 days from the SelectionStart date, what MonthCalendar method could you use?
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
25
SelectionStart and SelectionEnd are properties of the MonthCalendar class. What methods can be applied to these properties to control the display of a date? What other factors influence the format in which dates are displayed?
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
26
When designing a MenuStrip control, the programmer should follow conventional menu order; for example, a Help option is usually located ____ of the main menu.

A) on the far-left side
B) in the File submenu
C) in the Preferences submenu
D) on the far-right side
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
27
What are some of the commonly used LinkLabel properties, and what is the default event generated when the link is clicked by a user?
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
28
The ____________________ property of the PictureBox control sets the image that appears in the control.
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
29
When working with a Form in the IDE, how do you place new Control s on the Form , and how can you adjust them precisely to align with existing Control s?
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
30
When using programs or visiting Internet sites, you encounter and use many other interactive ____________________-elements of graphical interfaces that allow you to interact with programs-such as scroll bars, check boxes, and radio buttons.
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
31
Explain the selection options that can be controlled by setting the SelectionMode property of a ListBox .
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
32
How would you declare a named instance of a Font class, and what arguments can be used within the constructor? Show the declaration for a font named fancyFont that is size 24, bold, underlined, and Helvetica.
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
33
What are some of the commonly used PictureBox properties and the default event for a PictureBox ?
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
34
Setting the ____ property attaches a Control to the side of a container so that the Control stretches when the container's size is adjusted.

A) Anchor
B) Dock
C) Padding
D) Filling
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
35
The ____________________ class contains a wide variety of predefined Color s that you can use with your Control s.
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
36
When you drag multiple Control s onto a Form , blue ____ appear and help you align new Control s with others already in place.

A) dots
B) dotted lines
C) grip angles
D) snap lines
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
37
What are some of the commonly used CheckBox and RadioButton properties, and the default event for which a method shell is generated for these classes in the IDE? If you wanted a user to select which pizza toppings he or she wanted from a group of possible toppings, which Control would you use and why?
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
38
When filling in the items in a MenuStrip control, you can double-click an entry to generate a ____ method that will execute if the user clicks on the entry.

A) Change()
B) SetSelected()
C) Click()
D) SelectedIndexChanged()
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
39
When you create a Form in the Visual Studio IDE, the IDE automatically generates code to support the Form and any Control s that you place on the Form . What do you know about the Form under development given the following snippet of code generated by the IDE?
private void InitializeComponent()
{
this .label1 = new System.Windows.Forms.Label();
this .okButton = new System Windows.Forms.Button();
...
}
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
40
Control objects such as Form s and Button s, like all other objects in C#, ultimately derive from the ____________________ class.
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
41
What are the similarities and differences between using a GroupBox and using a Panel to group related Control s on a Form ?
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
42
Match between columns
The method executed when a click event is fired from a LinkLabel
Control.Capture
The method executed when a click event is fired from a LinkLabel
Component
The method executed when a click event is fired from a LinkLabel
ListBox
The method executed when a click event is fired from a LinkLabel
Items.Count
The method executed when a click event is fired from a LinkLabel
MenuStrip
The method executed when a click event is fired from a LinkLabel
LinkClicked()
The method executed when a click event is fired from a LinkLabel
DateChanged()
The method executed when a click event is fired from a LinkLabel
Dock
The method executed when a click event is fired from a LinkLabel
Anchor
The default event for MonthCalendar
Control.Capture
The default event for MonthCalendar
Component
The default event for MonthCalendar
ListBox
The default event for MonthCalendar
Items.Count
The default event for MonthCalendar
MenuStrip
The default event for MonthCalendar
LinkClicked()
The default event for MonthCalendar
DateChanged()
The default event for MonthCalendar
Dock
The default event for MonthCalendar
Anchor
Gets or sets a value indicating whether the control has captured the mouse
Control.Capture
Gets or sets a value indicating whether the control has captured the mouse
Component
Gets or sets a value indicating whether the control has captured the mouse
ListBox
Gets or sets a value indicating whether the control has captured the mouse
Items.Count
Gets or sets a value indicating whether the control has captured the mouse
MenuStrip
Gets or sets a value indicating whether the control has captured the mouse
LinkClicked()
Gets or sets a value indicating whether the control has captured the mouse
DateChanged()
Gets or sets a value indicating whether the control has captured the mouse
Dock
Gets or sets a value indicating whether the control has captured the mouse
Anchor
A property that holds the number of items in a ListBox
Control.Capture
A property that holds the number of items in a ListBox
Component
A property that holds the number of items in a ListBox
ListBox
A property that holds the number of items in a ListBox
Items.Count
A property that holds the number of items in a ListBox
MenuStrip
A property that holds the number of items in a ListBox
LinkClicked()
A property that holds the number of items in a ListBox
DateChanged()
A property that holds the number of items in a ListBox
Dock
A property that holds the number of items in a ListBox
Anchor
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
Control.Capture
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
Component
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
ListBox
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
Items.Count
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
MenuStrip
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
LinkClicked()
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
DateChanged()
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
Dock
A property that can be used to fix a Control at a given distance from the side of a container when the container is resized
Anchor
Displays a list of items that the user can select by clicking
Control.Capture
Displays a list of items that the user can select by clicking
Component
Displays a list of items that the user can select by clicking
ListBox
Displays a list of items that the user can select by clicking
Items.Count
Displays a list of items that the user can select by clicking
MenuStrip
Displays a list of items that the user can select by clicking
LinkClicked()
Displays a list of items that the user can select by clicking
DateChanged()
Displays a list of items that the user can select by clicking
Dock
Displays a list of items that the user can select by clicking
Anchor
A class that provides containment and cleanup for other objects
Control.Capture
A class that provides containment and cleanup for other objects
Component
A class that provides containment and cleanup for other objects
ListBox
A class that provides containment and cleanup for other objects
Items.Count
A class that provides containment and cleanup for other objects
MenuStrip
A class that provides containment and cleanup for other objects
LinkClicked()
A class that provides containment and cleanup for other objects
DateChanged()
A class that provides containment and cleanup for other objects
Dock
A class that provides containment and cleanup for other objects
Anchor
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
Control.Capture
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
Component
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
ListBox
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
Items.Count
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
MenuStrip
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
LinkClicked()
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
DateChanged()
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
Dock
A property that can be used to attach a Control to the side of a container so that the Control will stretch when the container is resized
Anchor
A horizontal list of general options that appears under the title bar of a Form or Window
Control.Capture
A horizontal list of general options that appears under the title bar of a Form or Window
Component
A horizontal list of general options that appears under the title bar of a Form or Window
ListBox
A horizontal list of general options that appears under the title bar of a Form or Window
Items.Count
A horizontal list of general options that appears under the title bar of a Form or Window
MenuStrip
A horizontal list of general options that appears under the title bar of a Form or Window
LinkClicked()
A horizontal list of general options that appears under the title bar of a Form or Window
DateChanged()
A horizontal list of general options that appears under the title bar of a Form or Window
Dock
A horizontal list of general options that appears under the title bar of a Form or Window
Anchor
Unlock Deck
Unlock for access to all 42 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 42 flashcards in this deck.