group 3 Flashcards

1
Q

is like a container for holding different control that allows the user to interact with an application

A

form

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Using the form, we can…

A

build a attractive user interface

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

form properties (20)

A

form properties:
BackColor
BackgroundImage
Cursor
AllowDrop
Font
Locked
FormBorderStyle
Text
MinimizeBox
IsMDIChild
Autoscroll
MaximizeBox
MaximumSize
Language
AcceptButton
Top, Left
Name
MinimumSize
Enabled
TopMost

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

used to set the background color for the form

A

form property:: BackColor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

used to set the background image of the form.

A

form property:: BackgroundImage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

used to set the cursor image when it hovers over the form

A

form property:: Cursor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

allows whether to drag and drop on the form

A

form property:: AllowDrop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

used to get or set the font used in a form

A

form property:: Font

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

determines whether the form is locked or not.

A

form property:: Locked

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

used to set or get border style in a form.

A

form property:: FormBorderStyle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

used to set the title for a form window

A

form property:: Text

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

used to display the minimum option on the title bar of the form

A

form property:: MinimizeBox

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

used to authenticate whether a form is a container of a Multiple Document Interface (MDI) child form

A

form property:: IsMDIChild

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

allows whether to enable auto-scrolling in a form

A

form property:: Autoscroll

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

used to display the maximum option on the title bar of the form

A

form property:: MaximizeBox

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

used to set the maximum height and width of the form

A

form property:: MaximumSize

17
Q

used to specifies the localized language in a form

A

form property:: Language

18
Q

used to set the form button if the enter key is pressed.

A

form property:: AcceptButton

19
Q

used to set the top-left corner coordinates of the form in pixel

A

form property:: Top, Left

20
Q

used to define the name of the form

A

form property:: Name

21
Q

used to set the minimum height and width of the form

A

form property:: MinimumSize

22
Q

uses the True or False value to enable mouse or keyboard events in the form

A

form property:: Enabled

23
Q

uses a Boolean value that represents whether you want to put the window form on top of the other form. By default, it is False

A

form property:: TopMost

24
Q

form-level events (6)

A

‘Load’ event
‘Closing’ event
‘Closed’ event
‘Resize’ event
‘Activated’ event
‘Deactivate’ event

25
Q

occurs when the form is first loaded into memory, before it is displayed to the user. This is typically where you initialize form controls, set default values, or load data from a database

A

‘Load’ event

26
Q

occurs just before a form is closed. This event can be used to prompt the user to save changes or cancel the closing process

A

‘Closing’ event

27
Q

occurs after the form has been closed. This is often used to perform cleanup operations

A

‘Closed’ event

28
Q

occurs when the form is resized. This event can be used to adjust the layout of controls dynamically

A

‘Resize’ event

29
Q

occurs when the form becomes the active form (gains focus).

A

‘Activated’ event

30
Q

occurs when the form loses focus (another form or application is activated).

A

‘Deactivate’ event