Home

Introduction to the Form

 

The Presence of a Form

 

Introduction

The Form is the most fundamentals objects used in an application. By itself, a form does nothing. Its main role is to host other objects that the user uses to interact with the computer:

Form 1

There are two main ways you get a form to your application. If you create a Windows Forms Application, it creates a starting form for you. Otherwise, the other technique consists of explicitly adding a form to your application.

 

Practical LearningPractical Learning: Introducing Forms

  1. Start Microsoft Visual Basic .NET and create a new Windows Application named Containers1
  2. Press F5 to test the program
  3. Close it and return to Visual Studio
 

The Form's Location

When you create an application and while you are designing the form, it is fixed in the top-left corner of the Form Designer. This is not the position the form would have when it runs. In fact, by default, a random position is set for the form when it comes up. Fortunately, you can specify where the form would be located when it comes up and you have various alternatives.

Like every control on an application, a form has a parent: the desktop. The desktop is the wide area of the monitor easily seen when the computer comes up. Everything on the computer is located with regards to this main parent. In the same way, a form uses the desktop to determine its "physical" location. Based on this, when an application is launched, its form occupies an area of the desktop. To locate its children, the desktop uses a Cartesian coordinate system whose origin is located on the top-left corner of the screen:

The Origin of the Windows default coordinate system

The horizontal measurements move from the origin to the right. The vertical measurements move from the origin to the bottom:

The distance from the form’s left border to the desktop’s left border is represented by the form's Left property. The distance from the form’s top border to the desktop’s top border is specified by the Top property. Therefore, the Left and the Top values are known as the form’s location. This can be illustrated as follows:

Form Location

To specify the default location of a form when the application is opened, in the Properties window, click the + button of the Location field to reveal the properties of the location. The X value represents the distance from the left border of the parent to the left border of the form. The Y value represents the distance from the top border of the parent to the top border of the form. If a value of a property is set to 0, the compiler would select a random value for it when the form comes up. Otherwise, you can change each value to a valid natural number (Short).

If you want to programmatically set the location of the form when its application opens, access either its Left or its Top properties, or both, and assign the desired value. Here is an example:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.Left = 100
        Me.Top = 248
End Sub

Alternatively, you can call the constructor of the Point structure and assign it to the Location property. Here is an example:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.Location = New Point(150, 248)
End Sub

The values must be Short integers, otherwise you would receive an error when you compile the application.

 

The Startup Position of a Form

At design time, the X and Y values of the Location property allow you to specify a precise position for the form. At run time, the Left and Top properties accomplish the same purpose. The Form class provides an alternative position to specify the location of the form relative to its parent. This is the role of the StartPosition property, which is a variable of the FormStartPosition enumerator. It provides the following five values:

Value Result
CenterParent The form will be positioned in the center of its parent. If the application is made of only this form, the form would be positioned in the middle of the desktop
CenterScreen The form will be positioned in the middle of the desktop even if this form is part of an application that is made of various forms.
Manual The form will use the values of the X, Y, Left, or Top properties of the Location
WindowsDefaultLocation The operating system will specify the form's position using a value known in Win32 as CW_USEDEFAULT

Based on this, to set the default relative location of a form when it comes up, change the value of its StartPosition combo box in the Properties window. To change this property at run time, call the FormStartPosition enumeration to select the desired value and assign it to the StartPosition property of the form. Here is an example:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.StartPosition = FormStartPosition.WindowsDefaultLocation
End Sub

The StartPosition property provides another value that is related to the size. Therefore, we will mention it when we review the size of a form.

 

Practical LearningPractical Learning: Setting a Form's Default Position

  1. Click the middle of the form to make sure it is selected
  2. In the Properties window, click StartPosition to reveal its combo box. Click the arrow of its combo box and select CenterScreen
  3. Execute the application to view the result. Notice that it is centered on the screen
  4. Close it and return to Visual Basic

The Title Bar

A form is made of various sections that allow its control as a Windows object and other aspects that play a valuable part as a host of other objects. The top section of a form is made of a long portion called the title bar.

On the left part of the title bar, the form displays a small picture called an icon or the system icon. Microsoft Visual Studio provides a default icon for all forms. If you want to use a different icon, while the form is selected, on the Properties window, you can click the Icon field and then click its ellipsis button . This would launch the Open dialog box from where you can locate an icon and open it.

To change the icon programmatically, declare a variable of the Icon class of the System.Drawing namespace and initialize it with the name of an icon file using the new operator. After initializing the icon, assign it to the form's Icon property. Here is an example:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim CustomIcon As Drawing.Icon = New System.Drawing.Icon("C:\Programs\arrowup1.ico")
        Me.Icon = CustomIcon 
End Sub

Practical LearningPractical Learning: Configuring a Form's Title Bar

  1. On the main menu, click Project -> Add New Item...
  2. In the Templates list, click Icon File
  3. In the Name text box, replace the suggested name with target
     
  4. Click Open
  5. Design the icon as follows:
     
    Icon Design
  6. To continue with the icon design, on the main menu, click Image -> New Image Type... On the New Icon Image Type, make sure the first 16x16, 16 colors item is selected:
     
    New Icon Image Type
  7. Click OK.
  8. Design it like the other. To make it transparent, make sure you right-click the color that looks like a monitor and apply it to the external areas:
     
  9. Display the form and, on the Properties window, click Icon and click its ellipsis button
  10. On the Open dialog box, locate the folder in which you had saved the project and select the icon1 icon
     
  11. Click Open
     
  12. Execute the application to test it
  13. Close it and return to Visual Studio
 

The Form's Caption

On the right side of the system icon, there is a word or a group of words called the caption. By default, the caption displays the name of the form. If you want to change the caption, while the form is selected, in the Properties window, click the Text field and type anything you want. After typing the text, press Enter to display it on the form.

At design time, the caption is made of text that you type "as is". At run time, you can change the caption to display a more complex text that could be a changing time, the result of a calculation, etc. In the following example, the name of the current user displays in the title bar when the user clicks a button named Button1:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Me.Text = "Current User: " & Environment.UserName
End Sub

Practical LearningPractical Learning: Setting a Form's Caption

  1. While the form is selected, in the Properties window, click Text and type
    Red Oak High School - Student Registration
  2. Press Enter
 

The System Buttons

On the right side of the caption, there are three small buttons called the system buttons, made of the Minimize Minimize, Maximize Maximize, and Close buttons Close. The presence or absence of these buttons is controlled by the Boolean ControlBox property whose default value is True to indicate that the form will be equipped with the system buttons. If you set it to False, no system button would be displayed:

In this case, the user would not be able to close the form using the system buttons. Therefore, if you create this type of control, make sure you provide the user with a way to close the form.

The Minimize Minimize button is controlled by a Boolean property called MinimizeBox. By default, when you freshly create a form, this property is set to True and the form would display a Minimize button. The Maximize Maximize buttons is controlled by the Boolean MaximizeBox property, which also is set to True by default. Depending on what you are trying to achieve in your application, you can change the value of either one or both of these properties. The four combinations are as follows:

MaximizeBox MinimizeBox Display Result
True True The form can be minimized or maximized
True False The form can be maximized but cannot be minimized
False True The form can be minimized but cannot be maximized 
False False The form can be neither minimized nor maximized

To change a system button programmatically, call the desired button's property and assign it a True or False value. Here is an example that makes sure the user cannot maximize the form:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim IC As Drawing.Icon = New System.Drawing.Icon("C:\Programs\arrowup1.ico")
        Me.Icon = IC

        Me.MinimizeBox = True
        Me.MaximizeBox = False
End Sub

Practical LearningPractical Learning: Configuring a Form's System Buttons

  1. To make sure that the user cannot maximize the form, on the Properties window, click the MaximizeBox field to reveal its combo box and select False
  2. Test the program
     
  3. Close the form and return to Visual Basic
 

The Form's Real Estate

 

The Form's Dimensions

A form's size is the amount of space it is occupying on the screen. It is expressed as its width and its height. The width of a form is the distance from its left to its right borders. The height is the distance from the top to the bottom borders of a form:

When you create a form, it assumes a default size. To set or change the size of a form, at design time, first click it to select it. Then, position the mouse on its right, bottom, bottom-right handles. This changes the mouse cursor in one of three shapes:

With the mouse positioned, drag in the desired direction. If you don't want to be able to resize a form and you want to prevent this by accident, set the form's Locked property to True. If you do this, the form would be surrounded by a rectangle with a black border and the sizing handles of the form would disappear:

The Locked property of the form set to True

Besides resizing the form by dragging one of its handles, to change the size of a form, select it and, in the Properties window, click the + button of the Size field. Then type the desired value for the Width and the desired value for the Height. The values must be natural numbers (Short)

To programmatically change the size of a form, assign the desired values of either or both its Width and Height properties. Alternatively, you can call the constructor of the Size structure to initialize it and assign it to the Size property of the form. Here is an example:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.Size = New System.Drawing.Size(450, 320)
End Sub

To find out the size of a control, declare a Size variable and assign it the Size property of the control. If you want the operating system to specify the size of the form, set its StartPosition property to WindowsDefaultBounds. In this case, a value called CW_USEDEFAULT would be assigned to both the Width and the Height properties.

 

Practical LearningPractical Learning: Setting the Form's Default Size

  1. Position the mouse to the small square on the right border of the form
  2. Click and drag in the right direction to make sure the caption in the title bar can appear completely
     
  3. Release the mouse

The Form Borders

A form can be made to look like a regular rectangular control host made of a system icon and the system buttons. Depending on your goals, you can also make a form appear as a dialog box or a dockable window. The borders of a form are controlled by the FormBorderStyle property.

If you set both the MinimizeBox and the MaximizeBox properties to False, we saw that the form would have only the system Close button, but the form can still be resized. If you want the form to display only the system Close button and to prevent the user from resizing it, set its FormBorderStyle property to FixedDialog. Here is an example:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim IC As Drawing.Icon = New System.Drawing.Icon("C:\Programs\arrowup1.ico")
        Me.Icon = IC

        Me.MinimizeBox = True
        Me.MaximizeBox = False

        Me.FormBorderStyle = FormBorderStyle.FixedDialog
End Sub

A tool window is a form equipped with a short title bar, no icon, and only a small system Close button. There are two types of tool windows. A tool window is referred to as fixed if the user cannot resize it. In this case, the FormBorderStyle property of the form is set to FixedToolWindow:

Me.FormBorderStyle = FormBorderStyle.FixedToolWindow

A tool window is referred to as sizable if it allows the user to resize it. To get such a form, set its FormBorderStyle property to SizableToolWindow:

Me.FormBorderStyle = FormBorderStyle.SizableToolWindow

You can also create a form with no borders by assigning None to the FormBorderStyle property. If you do this, make sure you provide the user with a way to close the form; otherwise...

A Tool Window
 

The Form's Client Area

When a form has been created, you can add Windows controls to it. These controls can be positioned only in a specific area, the body of the form. The body spans from the left border, excluding the border, of the form to the right border, excluding the border, of the form. It also spans from the top side, just under the title bar, to the bottom border, excluding the border, of the form. The area that the form makes available to the controls added to it is called the client area:

If a control is positioned on a form, its location uses a coordinate system whose origin is positioned on the top-left section of the client area (just under the title bar). The x axis moves from the origin to the left. The y axes moves from the origin down:

The origin of the coordinate system and its axes

The distance from the left border of the client area to the left border of the control is the Left property. The distance from the top border of the client area to the top border of the control is the Top property. These can be illustrated as follows:

The location of a control inside a parent window

 

To know the amount of space that a form is making available to its child control, you can access the form's ClientSize property.

 

Aesthetic of the Client Area of a Form

The client area of a form is painted with a color specified by the operating system. To change the color to anything you like, you can use the BackColor field of the Properties window. If you click the arrow of its combo box, it displays a property sheet with three tabs that divide the color in categories:

To programmatically change its color, assign a color from the Color structure to the BackColor property. Here is an example:

Me.BackColor = Color.AliceBlue

If you prefer to cover the client area with a picture, use the BackgroundImage property instead. If using the Properties window, you can easily locate and select a picture. To programmatically specify or change the picture used as background, declare and initialize a pointer to the Bitmap class. Then assign it to the BackgroundImage property. Here is an example:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim IC As Drawing.Icon = New System.Drawing.Icon("C:\Programs\arrowup1.ico")
        Me.Icon = IC
        
        Dim BG As New Bitmap("C:\Programs\car1.gif")
        Me.BackgroundImage = BG
End Sub
Form Background
 

The Form’s Transparency

An object is referred to as transparent when you can see through it. If you are working under Windows 2000 or later running on a Pentium or equivalent, you can make your form transparent. To create a transparent form, change its Opacity property. The default value is 100%, which means that the form would be completely visible. If you set it to 0, the form would not appear at all.  Any value between 0 excluded and 100 excluded would specify how much transparency the form would allow.

 

The Window State of a Form

When creating your application, you can configure its (main) form to be minimized or maximized when the application is launched. This ability is controlled by the WindowState property. The default value of this property is Normal which means the form would appear in the same dimensions it was designed. If you want the form to be minimized or maximized at startup, in the Properties window, change the desired value for the WindowState property as Maximized or Minimized.

To control the window’s state programmatically, assign the Maximized or Minimized value, which are members of the FormWindowState enumerator, to the WindowState property. Here is an example:

Me.WindowState = FormWindowState.Maximized

If you want to check the state of a window before taking action, simply use a conditional statement to compare its WindowState property with the Normal, the Maximized, or the Minimized values.

 

The Form's Taskbar Presence

When an application displays on the screen along with other applications, its form can be positioned on top of, or behind, forms of other applications. This is allowed by multitasking assignments. When a form is hidden, the taskbar allows you to access it because the form would be represented by a button. This aspect of forms is controlled by the ShowInTaskbar Boolean property. Its default value is True, which indicates that the form would be represented on the taskbar by a button.

If you create an application made of various forms, you may not want to show all of its forms on the taskbar. Usually the first or main form would be enough. To prevent a button for a form to display on the taskbar, set its ShowInTaskbar property to False.

 

Methods and Events to Manage a Form

 

Form Creation

The form is implemented by the Form class from the System.Windows.Forms namespace. The Form class is equipped with a constructor that allows you to dynamically create it. After a form has been created, it must be loaded to display on the screen. When a form is being loaded, it fires the Load() event. Its syntax is:

Public Event Load As EventHandler

This event is fired when a form is about to be displayed for the first time. Therefore, it can be used to perform last minute initializations.

 

Form Activation

When two or more forms are running on the computer, only one can receive input from the user; that is, only one form can actually be directly used at one particular time. Such a window has a title bar with the color identified in Control Panel as Active Window. The other window(s), if any, display(s) its/their title bar with a color called Inactive Window.

To manage this setting, the windows are organized in a 3-dimensional coordinate system and they are incrementally positioned on the Z coordinate, which defines the (0, 0, 0) origin on the screen (on the top-left corner of your monitor) with Z coordinate coming from the screen towards you.

In order to use a form other than the one that is active, you must activate it. To do this, you can call the Activate() method. Its syntax is:

Public Sub Activate()

When a form is activated, it fires the Activated event, which is an EventArgs type of event.

Form Deactivation

If there is more than one form or application on the screen, only one can be in front of the others and be able to receive input from the others. If a form is not active and you want to bring it to the top, you must activate it, which fires the Activated() event. When a form is being activated, the one that was on top would become deactivated. The form that was on top, as it looses focus, would fire the Deactivate() event which is an EventArgs type.

 

Form Closure

When the user has finished using a form, he or she must be able to close it. Closing a form is made possible by a simple call to the Close() method. Its syntax is:

Public Sub Close()

When this method is called, the process of closing a form starts. At this time, the Closing() event is fired. This is initiated as follows:

Private Sub Form1_Closing(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles MyBase.Closing

End Sub

This event is carried by a CancelEventArgs class which is defined as follows:

Public Class CancelEventArgs
   Inherits EventArgs
    Public Sub New()
    Public Sub New(ByVal cancel As Boolean)
    Public Property Cancel As Boolean
End Class

The Cancel property is probably the most important member of this class. It allows you do decide to dismiss the event or not. If you set it to True, the event will be ignored as if it were not fired. If you want the event to continue closing the form, you can set this property to False.

This event occurs before the form is actually closed, giving you time to let the form be closed, prevent the form being closed, or take any other necessary action.

After a form has been closed, a Closed() event is fired.

Although this method can be used to close any form of an application, if it is called by the main form, it also closes the application.

 

Previous Copyright © 2004-2010 FunctionX, Inc. Next