Deck 12: Using Controls

ملء الشاشة (f)
exit full mode
سؤال
A LinkLabel is similar to a Label in that it is a parent of Label .
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
C# allows you to create custom colors.
سؤال
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
سؤال
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
سؤال
The ____ class provides the definitions for GUI objects.

A) Control
B) Object
C) Widget
D) Gadget
سؤال
____ 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
سؤال
The default text color for a LinkLabel is purple.
سؤال
You use the ____ class to change the appearance of printed text on your Form s.

A) Text
B) ForeText
C) Font
D) FontText
سؤال
The ____ Control allows you to retrieve date information.

A) Calendar
B) MonthCalendar
C) DateCalendar
D) CalendarPicker
سؤال
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
سؤال
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
سؤال
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()
سؤال
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
سؤال
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
سؤال
____ 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
سؤال
The ____ Control displays a month calendar when the down arrow is selected.

A) MonthCalendar
B) CalendarPicker
C) DateTimePicker
D) DatePicker
سؤال
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) #
سؤال
Each Control has more than 80 public properties.
سؤال
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.
سؤال
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
سؤال
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
سؤال
A(n) ____________________ is a Control in which you can display graphics from a bitmap, icon, JPEG, GIF, or other image file type.
سؤال
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) >
سؤال
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?
سؤال
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?
سؤال
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
سؤال
What are some of the commonly used LinkLabel properties, and what is the default event generated when the link is clicked by a user?
سؤال
The ____________________ property of the PictureBox control sets the image that appears in the control.
سؤال
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?
سؤال
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.
سؤال
Explain the selection options that can be controlled by setting the SelectionMode property of a ListBox .
سؤال
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.
سؤال
What are some of the commonly used PictureBox properties and the default event for a PictureBox ?
سؤال
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
سؤال
The ____________________ class contains a wide variety of predefined Color s that you can use with your Control s.
سؤال
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
سؤال
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?
سؤال
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()
سؤال
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();
...
}
سؤال
Control objects such as Form s and Button s, like all other objects in C#, ultimately derive from the ____________________ class.
سؤال
What are the similarities and differences between using a GroupBox and using a Panel to group related Control s on a Form ?
سؤال
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 Deck
1/42
auto play flashcards
العب
simple tutorial
ملء الشاشة (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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
5
The ____ class provides the definitions for GUI objects.

A) Control
B) Object
C) Widget
D) Gadget
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
7
The default text color for a LinkLabel is purple.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
9
The ____ Control allows you to retrieve date information.

A) Calendar
B) MonthCalendar
C) DateCalendar
D) CalendarPicker
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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()
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
16
The ____ Control displays a month calendar when the down arrow is selected.

A) MonthCalendar
B) CalendarPicker
C) DateTimePicker
D) DatePicker
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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) #
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
18
Each Control has more than 80 public properties.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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) >
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
28
The ____________________ property of the PictureBox control sets the image that appears in the control.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
31
Explain the selection options that can be controlled by setting the SelectionMode property of a ListBox .
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
33
What are some of the commonly used PictureBox properties and the default event for a PictureBox ?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
35
The ____________________ class contains a wide variety of predefined Color s that you can use with your Control s.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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()
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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();
...
}
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
40
Control objects such as Form s and Button s, like all other objects in C#, ultimately derive from the ____________________ class.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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 ?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.