group 3 Flashcards
is like a container for holding different control that allows the user to interact with an application
form
Using the form, we can…
build a attractive user interface
form properties (20)
form properties:
BackColor
BackgroundImage
Cursor
AllowDrop
Font
Locked
FormBorderStyle
Text
MinimizeBox
IsMDIChild
Autoscroll
MaximizeBox
MaximumSize
Language
AcceptButton
Top, Left
Name
MinimumSize
Enabled
TopMost
used to set the background color for the form
form property:: BackColor
used to set the background image of the form.
form property:: BackgroundImage
used to set the cursor image when it hovers over the form
form property:: Cursor
allows whether to drag and drop on the form
form property:: AllowDrop
used to get or set the font used in a form
form property:: Font
determines whether the form is locked or not.
form property:: Locked
used to set or get border style in a form.
form property:: FormBorderStyle
used to set the title for a form window
form property:: Text
used to display the minimum option on the title bar of the form
form property:: MinimizeBox
used to authenticate whether a form is a container of a Multiple Document Interface (MDI) child form
form property:: IsMDIChild
allows whether to enable auto-scrolling in a form
form property:: Autoscroll
used to display the maximum option on the title bar of the form
form property:: MaximizeBox
used to set the maximum height and width of the form
form property:: MaximumSize
used to specifies the localized language in a form
form property:: Language
used to set the form button if the enter key is pressed.
form property:: AcceptButton
used to set the top-left corner coordinates of the form in pixel
form property:: Top, Left
used to define the name of the form
form property:: Name
used to set the minimum height and width of the form
form property:: MinimumSize
uses the True or False value to enable mouse or keyboard events in the form
form property:: Enabled
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
form property:: TopMost
form-level events (6)
‘Load’ event
‘Closing’ event
‘Closed’ event
‘Resize’ event
‘Activated’ event
‘Deactivate’ event
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
‘Load’ event
occurs just before a form is closed. This event can be used to prompt the user to save changes or cancel the closing process
‘Closing’ event
occurs after the form has been closed. This is often used to perform cleanup operations
‘Closed’ event
occurs when the form is resized. This event can be used to adjust the layout of controls dynamically
‘Resize’ event
occurs when the form becomes the active form (gains focus).
‘Activated’ event
occurs when the form loses focus (another form or application is activated).
‘Deactivate’ event