Deck 13: Handling Events

ملء الشاشة (f)
exit full mode
سؤال
Mouse events can be handled for any Control through an object of the class ____.

A) EventArgs
B) MouseEventArgs
C) MousePressEventArgs
D) MousePressArgs
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
The ____ event occurs when the user clicks the mouse within the Control 's boundaries.

A) MouseClick
B) MouseEnter
C) MouseHover
D) MouseLeave
سؤال
When you open the ____ file in an IDE, you can examine all the code generated by the Windows Form Designer for an application that creates a Form .

A) Designer.cs
B) EventHandlers.cs
C) Project.cs
D) Form.cs
سؤال
Any delegate can encapsulate any method that has the same return type and parameter list as the delegate.
سؤال
When you double-click the Button on the Form in the IDE, you generate the shell of a(n) ____ method.

A) Click
B) Double_Click
C) Enter
D) Focus
سؤال
In C#, a(n) ____ occurs when something interesting happens to an object.

A) error
B) event
C) note
D) callback
سؤال
A C# delegate is similar to a(n) ____ in C++, a variable that holds a method's memory address.

A) object pointer
B) integer pointer
C) function pointer
D) reference pointer
سؤال
The ____ event occurs when the mouse cursor leaves the Control 's boundaries.

A) MouseClick
B) MouseEnter
C) MouseHover
D) MouseLeave
سؤال
The C# language requires that every event must use a delegate type with three parameters.
سؤال
An event-handler method is also known as a(n) ____.

A) event source
B) event sender
C) sender object
D) event receiver
سؤال
When an event occurs, any delegate that a client has given or passed to the event is invoked.
سؤال
For events that do not use additional information, the .NET Framework has already defined an appropriate delegate type named ____.

A) EventArgs
B) EventTrigger
C) EventPush
D) EventHandler
سؤال
The code generated in Design mode in the IDE is not meant to be altered by typing. You should modify Control properties through the Properties window in the IDE.
سؤال
The second parameter in a Button event-handler parameter list is a reference to an event argument object of type ____.

A) MouseEventArgs
B) KeyEventArgs
C) EventArgs
D) KeyPressEventArgs
سؤال
You declare a delegate using the keyword ____.

A) handler
B) function
C) pointer
D) delegate
سؤال
The ____ class static field named Empty represents an event that contains no event data.

A) delegate
B) EventArgs
C) EventHandler
D) MouseArgs
سؤال
To declare your own event, you use a ____.

A) handler
B) trigger object
C) delegate
D) raiser
سؤال
Programmers say that a button click ____ an event.

A) raises
B) closes
C) deletes
D) revokes
سؤال
Events must be declared as private .
سؤال
A(n) ____ provides a way for the clients of a class to dictate methods that should execute when an event occurs.

A) handler
B) event
C) delegate
D) trigger
سؤال
Keyboard events are also known as ____.

A) key events
B) external events
C) input events
D) console events
سؤال
Given a GUI Control , what objects and delegates are provided to handle mouse events such as clicking, pointing, and dragging?
سؤال
A method that performs a task in response to an event is a(n) ____________________.
سؤال
Events are ____________________ occurrences; that is, they occur during the execution of a program rather than during development or at compile time.
سؤال
Depending on the event, the delegate used to create the keyboard event handler is either KeyEventHandler or ____.

A) PressEventHandler
B) EventHandler
C) KeyPressHandler
D) KeyPressEventHandler
سؤال
The first parameter of an event-handler method is an object named ____________________; it is a reference to the object that generated the event.
سؤال
What are the two actions that can be taken on an event field?
سؤال
What are the default conventions for naming event handlers?
سؤال
When users encounter multiple GUI Control s on a Form , usually one Control has ____; that is, if the user presses the Enter key, the Control will raise an event.

A) contact
B) focus
C) range
D) interaction
سؤال
Assume you declare three delegates named delegate1 , delegate2 , and delegate3 . You then assign a reference to method M1() to delegate1 , and a reference to method M2() to delegate2 . How do you make delegate3 into a composed delegate that executes both M1() and M2() ? What are the rules concerning return type and parameter list for composed delegates?
سؤال
____ occur when a user presses and releases keyboard keys.

A) Mouse events
B) Button events
C) Key events
D) Form events
سؤال
You can use the + and += operators to combine delegates into a(n) ____________________ that calls the delegates from which it is built.
سؤال
What are common keyboard events? What is the delegate used to create a keyboard event handler, and what is the type of the second parameter to the event handler?
سؤال
What is an important difference between KeyEventArgs properties and KeyPressEventArgs properties?
سؤال
Given the delegate declaration:   delegate void GreetingDelegate(string s);
What do you know about any method that is represented by this delegate? In general, what can you tell about a method if you know it is encapsulated by a particular delegate?
سؤال
Connecting an event to its resulting actions is called event ____________________.
سؤال
____ is a Boolean property of a Control that identifies whether the Control will serve as a stopping place in a sequence of Tab key presses.

A) TabIndex
B) TabCount
C) TabStop
D) TabFlag
سؤال
When you define your own event-handler delegate, what arguments are required? Provide an example of a delegate declaration.
سؤال
When a Form contains multiple Control s, you can create a separate event handler for each Control . However, you can also associate the same event handler with multiple Control s. Describe how to associate an existing event handler with a second Control using the IDE.
سؤال
The ____ event occurs when a mouse button is released while the mouse is within the Control 's boundaries.

A) MouseClick
B) MouseHover
C) MouseUp
D) MouseMove
سؤال
Match between columns
Used to notify an object's client of a change that has occurred in the object
MouseEventHandler
Used to notify an object's client of a change that has occurred in the object
event receiver
Used to notify an object's client of a change that has occurred in the object
Click event
Used to notify an object's client of a change that has occurred in the object
Events icon
Used to notify an object's client of a change that has occurred in the object
encapsulation
Used to notify an object's client of a change that has occurred in the object
Empty
Used to notify an object's client of a change that has occurred in the object
composed delegate
Used to notify an object's client of a change that has occurred in the object
event
Used to notify an object's client of a change that has occurred in the object
event sender
A type of delegate that lets you invoke multiple method calls using a single statement
MouseEventHandler
A type of delegate that lets you invoke multiple method calls using a single statement
event receiver
A type of delegate that lets you invoke multiple method calls using a single statement
Click event
A type of delegate that lets you invoke multiple method calls using a single statement
Events icon
A type of delegate that lets you invoke multiple method calls using a single statement
encapsulation
A type of delegate that lets you invoke multiple method calls using a single statement
Empty
A type of delegate that lets you invoke multiple method calls using a single statement
composed delegate
A type of delegate that lets you invoke multiple method calls using a single statement
event
A type of delegate that lets you invoke multiple method calls using a single statement
event sender
A delegate used to create mouse event handlers
MouseEventHandler
A delegate used to create mouse event handlers
event receiver
A delegate used to create mouse event handlers
Click event
A delegate used to create mouse event handlers
Events icon
A delegate used to create mouse event handlers
encapsulation
A delegate used to create mouse event handlers
Empty
A delegate used to create mouse event handlers
composed delegate
A delegate used to create mouse event handlers
event
A delegate used to create mouse event handlers
event sender
The control that generates an event
MouseEventHandler
The control that generates an event
event receiver
The control that generates an event
Click event
The control that generates an event
Events icon
The control that generates an event
encapsulation
The control that generates an event
Empty
The control that generates an event
composed delegate
The control that generates an event
event
The control that generates an event
event sender
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
MouseEventHandler
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
event receiver
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
Click event
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
Events icon
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
encapsulation
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
Empty
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
composed delegate
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
event
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
event sender
Shown in the Properties window of the IDE, and looks like a lightning bolt
MouseEventHandler
Shown in the Properties window of the IDE, and looks like a lightning bolt
event receiver
Shown in the Properties window of the IDE, and looks like a lightning bolt
Click event
Shown in the Properties window of the IDE, and looks like a lightning bolt
Events icon
Shown in the Properties window of the IDE, and looks like a lightning bolt
encapsulation
Shown in the Properties window of the IDE, and looks like a lightning bolt
Empty
Shown in the Properties window of the IDE, and looks like a lightning bolt
composed delegate
Shown in the Properties window of the IDE, and looks like a lightning bolt
event
Shown in the Properties window of the IDE, and looks like a lightning bolt
event sender
Generated when a Button object is clicked
MouseEventHandler
Generated when a Button object is clicked
event receiver
Generated when a Button object is clicked
Click event
Generated when a Button object is clicked
Events icon
Generated when a Button object is clicked
encapsulation
Generated when a Button object is clicked
Empty
Generated when a Button object is clicked
composed delegate
Generated when a Button object is clicked
event
Generated when a Button object is clicked
event sender
Also known as an event-handler method
MouseEventHandler
Also known as an event-handler method
event receiver
Also known as an event-handler method
Click event
Also known as an event-handler method
Events icon
Also known as an event-handler method
encapsulation
Also known as an event-handler method
Empty
Also known as an event-handler method
composed delegate
Also known as an event-handler method
event
Also known as an event-handler method
event sender
Represents an event that contains no event data
MouseEventHandler
Represents an event that contains no event data
event receiver
Represents an event that contains no event data
Click event
Represents an event that contains no event data
Events icon
Represents an event that contains no event data
encapsulation
Represents an event that contains no event data
Empty
Represents an event that contains no event data
composed delegate
Represents an event that contains no event data
event
Represents an event that contains no event data
event sender
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/41
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 13: Handling Events
1
Mouse events can be handled for any Control through an object of the class ____.

A) EventArgs
B) MouseEventArgs
C) MousePressEventArgs
D) MousePressArgs
B
2
The ____ event occurs when the user clicks the mouse within the Control 's boundaries.

A) MouseClick
B) MouseEnter
C) MouseHover
D) MouseLeave
A
3
When you open the ____ file in an IDE, you can examine all the code generated by the Windows Form Designer for an application that creates a Form .

A) Designer.cs
B) EventHandlers.cs
C) Project.cs
D) Form.cs
A
4
Any delegate can encapsulate any method that has the same return type and parameter list as the delegate.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
5
When you double-click the Button on the Form in the IDE, you generate the shell of a(n) ____ method.

A) Click
B) Double_Click
C) Enter
D) Focus
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
6
In C#, a(n) ____ occurs when something interesting happens to an object.

A) error
B) event
C) note
D) callback
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
7
A C# delegate is similar to a(n) ____ in C++, a variable that holds a method's memory address.

A) object pointer
B) integer pointer
C) function pointer
D) reference pointer
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
8
The ____ event occurs when the mouse cursor leaves the Control 's boundaries.

A) MouseClick
B) MouseEnter
C) MouseHover
D) MouseLeave
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
9
The C# language requires that every event must use a delegate type with three parameters.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
10
An event-handler method is also known as a(n) ____.

A) event source
B) event sender
C) sender object
D) event receiver
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
11
When an event occurs, any delegate that a client has given or passed to the event is invoked.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
12
For events that do not use additional information, the .NET Framework has already defined an appropriate delegate type named ____.

A) EventArgs
B) EventTrigger
C) EventPush
D) EventHandler
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
13
The code generated in Design mode in the IDE is not meant to be altered by typing. You should modify Control properties through the Properties window in the IDE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
14
The second parameter in a Button event-handler parameter list is a reference to an event argument object of type ____.

A) MouseEventArgs
B) KeyEventArgs
C) EventArgs
D) KeyPressEventArgs
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
15
You declare a delegate using the keyword ____.

A) handler
B) function
C) pointer
D) delegate
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
16
The ____ class static field named Empty represents an event that contains no event data.

A) delegate
B) EventArgs
C) EventHandler
D) MouseArgs
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
17
To declare your own event, you use a ____.

A) handler
B) trigger object
C) delegate
D) raiser
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
18
Programmers say that a button click ____ an event.

A) raises
B) closes
C) deletes
D) revokes
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
19
Events must be declared as private .
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
20
A(n) ____ provides a way for the clients of a class to dictate methods that should execute when an event occurs.

A) handler
B) event
C) delegate
D) trigger
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
21
Keyboard events are also known as ____.

A) key events
B) external events
C) input events
D) console events
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
22
Given a GUI Control , what objects and delegates are provided to handle mouse events such as clicking, pointing, and dragging?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
23
A method that performs a task in response to an event is a(n) ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
24
Events are ____________________ occurrences; that is, they occur during the execution of a program rather than during development or at compile time.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
25
Depending on the event, the delegate used to create the keyboard event handler is either KeyEventHandler or ____.

A) PressEventHandler
B) EventHandler
C) KeyPressHandler
D) KeyPressEventHandler
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
26
The first parameter of an event-handler method is an object named ____________________; it is a reference to the object that generated the event.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
27
What are the two actions that can be taken on an event field?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
28
What are the default conventions for naming event handlers?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
29
When users encounter multiple GUI Control s on a Form , usually one Control has ____; that is, if the user presses the Enter key, the Control will raise an event.

A) contact
B) focus
C) range
D) interaction
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
30
Assume you declare three delegates named delegate1 , delegate2 , and delegate3 . You then assign a reference to method M1() to delegate1 , and a reference to method M2() to delegate2 . How do you make delegate3 into a composed delegate that executes both M1() and M2() ? What are the rules concerning return type and parameter list for composed delegates?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
31
____ occur when a user presses and releases keyboard keys.

A) Mouse events
B) Button events
C) Key events
D) Form events
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
32
You can use the + and += operators to combine delegates into a(n) ____________________ that calls the delegates from which it is built.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
33
What are common keyboard events? What is the delegate used to create a keyboard event handler, and what is the type of the second parameter to the event handler?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
34
What is an important difference between KeyEventArgs properties and KeyPressEventArgs properties?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
35
Given the delegate declaration:   delegate void GreetingDelegate(string s);
What do you know about any method that is represented by this delegate? In general, what can you tell about a method if you know it is encapsulated by a particular delegate?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
36
Connecting an event to its resulting actions is called event ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
37
____ is a Boolean property of a Control that identifies whether the Control will serve as a stopping place in a sequence of Tab key presses.

A) TabIndex
B) TabCount
C) TabStop
D) TabFlag
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
38
When you define your own event-handler delegate, what arguments are required? Provide an example of a delegate declaration.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
39
When a Form contains multiple Control s, you can create a separate event handler for each Control . However, you can also associate the same event handler with multiple Control s. Describe how to associate an existing event handler with a second Control using the IDE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
40
The ____ event occurs when a mouse button is released while the mouse is within the Control 's boundaries.

A) MouseClick
B) MouseHover
C) MouseUp
D) MouseMove
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
41
Match between columns
Used to notify an object's client of a change that has occurred in the object
MouseEventHandler
Used to notify an object's client of a change that has occurred in the object
event receiver
Used to notify an object's client of a change that has occurred in the object
Click event
Used to notify an object's client of a change that has occurred in the object
Events icon
Used to notify an object's client of a change that has occurred in the object
encapsulation
Used to notify an object's client of a change that has occurred in the object
Empty
Used to notify an object's client of a change that has occurred in the object
composed delegate
Used to notify an object's client of a change that has occurred in the object
event
Used to notify an object's client of a change that has occurred in the object
event sender
A type of delegate that lets you invoke multiple method calls using a single statement
MouseEventHandler
A type of delegate that lets you invoke multiple method calls using a single statement
event receiver
A type of delegate that lets you invoke multiple method calls using a single statement
Click event
A type of delegate that lets you invoke multiple method calls using a single statement
Events icon
A type of delegate that lets you invoke multiple method calls using a single statement
encapsulation
A type of delegate that lets you invoke multiple method calls using a single statement
Empty
A type of delegate that lets you invoke multiple method calls using a single statement
composed delegate
A type of delegate that lets you invoke multiple method calls using a single statement
event
A type of delegate that lets you invoke multiple method calls using a single statement
event sender
A delegate used to create mouse event handlers
MouseEventHandler
A delegate used to create mouse event handlers
event receiver
A delegate used to create mouse event handlers
Click event
A delegate used to create mouse event handlers
Events icon
A delegate used to create mouse event handlers
encapsulation
A delegate used to create mouse event handlers
Empty
A delegate used to create mouse event handlers
composed delegate
A delegate used to create mouse event handlers
event
A delegate used to create mouse event handlers
event sender
The control that generates an event
MouseEventHandler
The control that generates an event
event receiver
The control that generates an event
Click event
The control that generates an event
Events icon
The control that generates an event
encapsulation
The control that generates an event
Empty
The control that generates an event
composed delegate
The control that generates an event
event
The control that generates an event
event sender
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
MouseEventHandler
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
event receiver
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
Click event
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
Events icon
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
encapsulation
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
Empty
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
composed delegate
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
event
The technique of packaging an object's attributes and methods into a cohesive unit that can then be used as an undivided entity
event sender
Shown in the Properties window of the IDE, and looks like a lightning bolt
MouseEventHandler
Shown in the Properties window of the IDE, and looks like a lightning bolt
event receiver
Shown in the Properties window of the IDE, and looks like a lightning bolt
Click event
Shown in the Properties window of the IDE, and looks like a lightning bolt
Events icon
Shown in the Properties window of the IDE, and looks like a lightning bolt
encapsulation
Shown in the Properties window of the IDE, and looks like a lightning bolt
Empty
Shown in the Properties window of the IDE, and looks like a lightning bolt
composed delegate
Shown in the Properties window of the IDE, and looks like a lightning bolt
event
Shown in the Properties window of the IDE, and looks like a lightning bolt
event sender
Generated when a Button object is clicked
MouseEventHandler
Generated when a Button object is clicked
event receiver
Generated when a Button object is clicked
Click event
Generated when a Button object is clicked
Events icon
Generated when a Button object is clicked
encapsulation
Generated when a Button object is clicked
Empty
Generated when a Button object is clicked
composed delegate
Generated when a Button object is clicked
event
Generated when a Button object is clicked
event sender
Also known as an event-handler method
MouseEventHandler
Also known as an event-handler method
event receiver
Also known as an event-handler method
Click event
Also known as an event-handler method
Events icon
Also known as an event-handler method
encapsulation
Also known as an event-handler method
Empty
Also known as an event-handler method
composed delegate
Also known as an event-handler method
event
Also known as an event-handler method
event sender
Represents an event that contains no event data
MouseEventHandler
Represents an event that contains no event data
event receiver
Represents an event that contains no event data
Click event
Represents an event that contains no event data
Events icon
Represents an event that contains no event data
encapsulation
Represents an event that contains no event data
Empty
Represents an event that contains no event data
composed delegate
Represents an event that contains no event data
event
Represents an event that contains no event data
event sender
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 41 في هذه المجموعة.