Define form in VB.NET.Forms are the primary unit of the user interface. Design of the form should be consistent, complete, and attractive visual interface. You can add forms to your application at design time or at run time. Forms have properties that control their appearance.
These properties include
- BackColor - ForeColor - Text - Font - Cursor - BackGroundImage - Opacity
Form provides several intrinsic methods to control their lifetime
- Form.Show - Form.ShowDialog - Form.Activate - Form.Hide - Form.Close
These methods causes change in the visual interface and raises various events
- Load - Activated/Deactivate - VisibleChanged - Closing - Closed
|