You are creating an application that presents the user with a Windows Form.
Which event is triggered each time the Windows Form receives focus?
A.
Eriter
B.
Paint
C.
Load
D.
Activated
You are creating an application that presents the user with a Windows Form.
Which event is triggered each time the Windows Form receives focus?
You are creating an application that presents the user with a Windows Form.
Which event is triggered each time the Windows Form receives focus?
A.
Eriter
B.
Paint
C.
Load
D.
Activated
What about Activated ?
D – When the application is active and has multiple forms, the active form is the form with the input focus.
D. Activated
Focus and Validation Events
When you change the focus by using the keyboard (TAB, SHIFT+TAB, and so on), by calling the Select or SelectNextControl methods, or by setting the ActiveControl property to the current form, focus events of the Control class occur in the following order:
Enter
GotFocus
Leave
Validating
Validated
LostFocus
When you change the focus by using the mouse or by calling the Focus method, focus events of the Control class occur in the following order:
Enter
GotFocus
LostFocus
Leave
Validating
Validated
So it should be A. ENTER right? but they spelt it wrong
https://msdn.microsoft.com/en-us/library/system.windows.forms.control.gotfocus(v=vs.110).aspx