Walkthrough: Authoring a Composite Control with Visual Basic

Composite controls provide a means by which custom graphical interfaces can be created and reused. A composite control is essentially a component with a visual representation. As such, it might consist of one or more Windows Forms controls, components, or blocks of code that can extend functionality by validating user input, modifying display properties, or performing other tasks required by the author. Composite controls can be placed on Windows Forms in the same manner as other controls. In the first part of this walkthrough, you create a simple composite control called ctlClock. In the second part of the walkthrough, you extend the functionality of ctlClock through inheritance.

Note

The dialog boxes and menu commands you see might differ from those described in Help depending on your active settings or edition. To change your settings, choose Import and Export Settings on the Tools menu. For more information, see Visual Studio Settings.

Creating the Project

When you create a new project, you specify its name to set the root namespace, assembly name, and project name, and ensure that the default component will be in the correct namespace.

To create the ctlClockLib control library and the ctlClock control

  1. On the File menu, point to New, and then click Project to open the New Project dialog box.

  2. From the list of Visual Basic projects, select the Windows Control Library project template, type ctlClockLib in the Name box, and then click OK.

    The project name, ctlClockLib, is also assigned to the root namespace by default. The root namespace is used to qualify the names of components in the assembly. For example, if two assemblies provide components named ctlClock, you can specify your ctlClock component using ctlClockLib.ctlClock.

  3. In Solution Explorer, right-click UserControl1.vb, and then click Rename. Change the file name to ctlClock.vb. Click the Yes button when you are asked if you want to rename all references to the code element "UserControl1".

    Note

    By default, a composite control inherits from the UserControl class provided by the system. The UserControl class provides functionality required by all composite controls, and implements standard methods and properties.

  4. On the File menu, click Save All to save the project.

Adding Windows Controls and Components to the Composite Control

A visual interface is an essential part of your composite control. This visual interface is implemented by the addition of one or more Windows controls to the designer surface. In the following demonstration, you will incorporate Windows controls into your composite control and write code to implement functionality.

To add a Label and a Timer to your composite control

  1. In Solution Explorer, right-click ctlClock.vb, and then click View Designer.

  2. In the Toolbox, expand the Common Controls node, and then double-click Label.

    A Label control named Label1 is added to your control on the designer surface.

  3. In the designer, click Label1. In the Properties window, set the following properties.

    Property

    Change to

    Name

    lblDisplay

    Text

    (blank space)

    TextAlign

    MiddleCenter

    Font.Size

    14

  4. In the Toolbox, expand the Components node, and then double-click Timer.

    Because a Timer is a component, it has no visual representation at run time. Therefore, it does not appear with the controls on the designer surface, but rather in the Component Designer (a tray at the bottom of the designer surface).

  5. In the Component Designer, click Timer1, and then set the Interval property to 1000 and the Enabled property to True.

    The Interval property controls the frequency with which the timer component ticks. Each time Timer1 ticks, it runs the code in the Timer1_Tick event. The interval represents the number of milliseconds between ticks.

  6. In the Component Designer, double-click Timer1 to go to the Timer1_Tick event for ctlClock.

  7. Modify the code so that it resembles the following code sample. Be sure to change the access modifier from Private to Protected.

    [Visual Basic]

    Protected Sub Timer1_Tick(ByVal sender As Object, ByVal e As _
        System.EventArgs) Handles Timer1.Tick
        ' Causes the label to display the current time.  
        lblDisplay.Text = Format(Now, "hh:mm:ss")
    End Sub
    

    This code will cause the current time to be shown in lblDisplay. Because the interval of Timer1 was set to 1000, this event will occur every thousand milliseconds, thus updating the current time every second.

  8. Modify the method to be overridable. For more information, see the "Inheriting from a User Control" section below.

    [Visual Basic]

    Protected Overridable Sub Timer1_Tick(ByVal sender As Object, ByVal _
        e As System.EventArgs) Handles Timer1.Tick
    
  9. On the File menu, click Save All to save the project.

Adding Properties to the Composite Control

Your clock control now encapsulates a Label control and a Timer component, each with its own set of inherent properties. While the individual properties of these controls will not be accessible to subsequent users of your control, you can create and expose custom properties by writing the appropriate blocks of code. In the following procedure, you will add properties to your control that enable the user to change the color of the background and text.

To add a property to your composite control

  1. In Solution Explorer, right-click ctlClock.vb, and then click View Code.

    The Code Editor for your control opens.

  2. Locate the Public Class ctlClock statement. Beneath it, type the following code.

    [Visual Basic]

    Private colFColor as Color
    Private colBColor as Color
    

    These statements create the private variables that you will use to store the values for the properties you are about to create.

  3. Insert the following code beneath the variable declarations from step 2.

    [Visual Basic]

    ' Declares the name and type of the property.
    Property ClockBackColor() as Color
        ' Retrieves the value of the private variable colBColor.
        Get
            Return colBColor
        End Get
        ' Stores the selected value in the private variable colBColor, and 
        ' updates the background color of the label control lblDisplay.
        Set(ByVal value as Color)
            colBColor = value
            lblDisplay.BackColor = colBColor   
        End Set
    
    End Property
    ' Provides a similar set of instructions for the foreground color.
    Property ClockForeColor() as Color
        Get
            Return colFColor
        End Get
        Set(ByVal value as Color)
            colFColor = value
            lblDisplay.ForeColor = colFColor
        End Set
    End Property
    

    The preceding code makes two custom properties, ClockForeColor and ClockBackColor, available to subsequent users of this control by invoking the Property statement. The Get and Set statements provide for storage and retrieval of the property value, as well as code to implement functionality appropriate to the property.

  4. On the File menu, click Save All to save the project.

Testing the Control

Controls are not stand-alone projects; they must be hosted in a container. Test your control's run-time behavior and exercise its properties with the UserControl Test Container. For more information, see How to: Test the Run-Time Behavior of a UserControl.

To test your control

  1. Press F5 to build the project and run your control in the UserControl Test Container.

  2. In the test container's property grid, select the ClockBackColor property, and then click the drop-down arrow to display the color palette.

  3. Choose a color by clicking it.

    The background color of your control changes to the color you selected.

  4. Use a similar sequence of events to verify that the ClockForeColor property is functioning as expected.

  5. Click Close to close the UserControl Test Container.

    In this section and the preceding sections, you have seen how components and Windows controls can be combined with code and packaging to provide custom functionality in the form of a composite control. You have learned to expose properties in your composite control, and how to test your control after it is complete. In the next section you will learn how to construct an inherited composite control using ctlClock as a base.

Inheriting from a Composite Control

In the previous sections, you learned how to combine Windows controls, components, and code into reusable composite controls. Your composite control can now be used as a base upon which other controls can be built. The process of deriving a class from a base class is called inheritance. In this section, you will create a composite control called ctlAlarmClock. This control will be derived from its parent control, ctlClock. You will learn to extend the functionality of ctlClock by overriding parent methods and adding new methods and properties.

The first step in creating an inherited control is to derive it from its parent. This action creates a new control that has all of the properties, methods, and graphical characteristics of the parent control, but can also act as a base for the addition of new or modified functionality.

To create the inherited control

  1. In Solution Explorer, right-click ctlClockLib, point to Add, and then click User Control.

    The Add New Item dialog box opens.

  2. Select the Inherited User Control template.

  3. In the Name box, type ctlAlarmClock.vb, and then click Add.

    The Inheritance Picker dialog box appears.

  4. Under Component Name, double-click ctlClock.

  5. In Solution Explorer, browse through the current projects.

    Note

    A file called ctlAlarmClock.vb has been added to the current project.

Adding the Alarm Properties

Properties are added to an inherited control in the same way they are added to a composite control. You will now use the property declaration syntax to add two properties to your control: AlarmTime, which will store the value of the date and time the alarm is to go off, and AlarmSet, which will indicate whether the alarm is set.

To add properties to your composite control

  1. In Solution Explorer, right-click ctlAlarmClock, and then click View Code.

  2. Locate the class declaration for the ctlAlarmClock control, which appears as Public Class ctlAlarmClock. In the class declaration, insert the following code.

    [Visual Basic]

    Private dteAlarmTime As Date
    Private blnAlarmSet As Boolean
    ' These properties will be declared as Public to allow future 
    ' developers to access them.
    Public Property AlarmTime() As Date
        Get
            Return dteAlarmTime
        End Get
        Set(ByVal value as Date)
            dteAlarmTime = value
        End Set
    End Property
    Public Property AlarmSet() As Boolean
        Get
            Return blnAlarmSet
        End Get
        Set(ByVal value as Boolean)
            blnAlarmSet = value
        End Set
    End Property
    

Adding to the Graphical Interface of the Control

Your inherited control has a visual interface that is identical to the control it inherits from. It possesses the same constituent controls as its parent control, but the properties of the constituent controls will not be available unless they were specifically exposed. You may add to the graphical interface of an inherited composite control in the same manner as you would add to any composite control. To continue adding to your alarm clock's visual interface, you will add a label control that will flash when the alarm is sounding.

To add the label control

  1. In Solution Explorer, right-click ctlAlarmClock, and click View Designer.

    The designer for ctlAlarmClock opens in the main window.

  2. Click lblDisplay (the display portion of the control), and view the Properties window.

    Note

    While all the properties are displayed, they are dimmed. This indicates that these properties are native to lblDisplay and cannot be modified or accessed in the Properties window. By default, controls contained in a composite control are Private, and their properties are not accessible by any means.

    Note

    If you want subsequent users of your composite control to have access to its internal controls, declare them as Public or Protected. This will allow you to set and modify properties of controls contained within your composite control by using the appropriate code.

  3. Add a Label control to your composite control.

  4. Using the mouse, drag the Label control immediately beneath the display box. In the Properties window, set the following properties.

    Property

    Setting

    Name

    lblAlarm

    Text

    Alarm!

    TextAlign

    MiddleCenter

    Visible

    False

Adding the Alarm Functionality

In the previous procedures, you added properties and a control that will enable alarm functionality in your composite control. In this procedure, you will add code to compare the current time to the alarm time and, if they are the same, to sound and flash an alarm. By overriding the Timer1_Tick method of ctlClock and adding additional code to it, you will extend the capability of ctlAlarmClock while retaining all of the inherent functionality of ctlClock.

To override the Timer1_Tick method of ctlClock

  1. In Solution Explorer, right-click ctlAlarmClock.vb, and then click View Code.

  2. Locate the Private blnAlarmSet As Boolean statement. Immediately beneath it, add the following statement.

    [Visual Basic]

    Dim blnColorTicker as Boolean
    
  3. Locate the End Class statement at the bottom of the page. Just before the End Class statement, add the following code.

    [Visual Basic]

    Protected Overrides Sub Timer1_Tick(ByVal sender As Object, ByVal e _
        As System.EventArgs)
        ' Calls the Timer1_Tick method of ctlClock.
        MyBase.Timer1_Tick(sender, e)
        ' Checks to see if the Alarm is set.
        If AlarmSet = False Then
            Exit Sub
        End If
        ' If the date, hour, and minute of the alarm time are the same as
        ' now, flash and beep an alarm. 
        If AlarmTime.Date = Now.Date And AlarmTime.Hour = Now.Hour And _
            AlarmTime.Minute = Now.Minute Then
            ' Sounds an audible beep.
            Beep()
            ' Sets lblAlarmVisible to True, and changes the background color based on the 
            ' value of blnColorTicker. The background color of the label will 
            ' flash once per tick of the clock.
            lblAlarm.Visible = True
            If blnColorTicker = False Then
                lblAlarm.BackColor = Color.PeachPuff
                blnColorTicker = True
            Else
                lblAlarm.BackColor = Color.Plum
                blnColorTicker = False
            End If
        Else
            ' Once the alarm has sounded for a minute, the label is made 
            ' invisible again.
            lblAlarm.Visible = False
        End If
    End Sub
    

    The addition of this code accomplishes several tasks. The Overrides statement directs the control to use this method in place of the method that was inherited from the base control. When this method is called, it calls the method it overrides by invoking the MyBase.Timer1_Tick statement, ensuring that all of the functionality incorporated in the original control is reproduced in this control. It then runs additional code to incorporate the alarm functionality. A flashing label control will appear when the alarm occurs, and an audible beep will be heard.

    Note

    Because you are overriding an inherited event handler, you do not have to specify the event with the Handles keyword. The event is already hooked up. All you are overriding is the implementation of the handler.

    Your alarm clock control is almost complete. The only thing that remains is to implement a way to turn it off. To do this, you will add code to the lblAlarm_Click method.

To implement the shutoff method

  1. In Solution Explorer, right-click ctlAlarmClock.vb, and then click View Designer.

  2. In the designer, double-click lblAlarm. The Code Editor opens to the Private Sub lblAlarm_Click line.

  3. Modify this method so that it resembles the following code.

    [Visual Basic]

    Private Sub lblAlarm_Click(ByVal sender As Object, ByVal e As _
     System.EventArgs) Handles lblAlarm.Click
        ' Turns off the alarm.
        AlarmSet = False
        ' Hides the flashing label.
        lblAlarm.Visible = False
    End Sub
    
  4. On the File menu, click Save All to save the project.

Using the Inherited Control on a Form

You can test your inherited control the same way you tested the base class control, ctlClock: Press F5 to build the project and run your control in the UserControl Test Container. For more information, see How to: Test the Run-Time Behavior of a UserControl.

To put your control to use, you will need to host it on a form. As with a standard composite control, an inherited composite control cannot stand alone and must be hosted in a form or other container. Since ctlAlarmClock has a greater depth of functionality, additional code is required to test it. In this procedure, you will write a simple program to test the functionality of ctlAlarmClock. You will write code to set and display the AlarmTime property of ctlAlarmClock, and will test its inherent functions.

To build and add your control to a test form

  1. In Solution Explorer, right-click ctlClockLib, and then click Build.

  2. On the File menu, point to Add, and then click New Project.

  3. Add a new Windows Application project to the solution, and name it Test.

    The Test project is added to Solution Explorer.

  4. In Solution Explorer, right-click the Test project node, and then click Add Reference to display the Add Reference dialog box.

  5. Click the tab labeled Projects. The project ctlClockLib will be listed under Project Name. Double-click ctlClockLib to add the reference to the test project.

  6. In Solution Explorer, right-click Test, and then click Build.

  7. In the Toolbox, expand the ctlClockLib Components node.

  8. Double-click ctlAlarmClock to add an instance of ctlAlarmClock to your form.

  9. In the Toolbox, locate and double-click DateTimePicker to add a DateTimePicker control to your form, and then add a Label control by double-clicking Label.

  10. Use the mouse to position the controls in a convenient place on the form.

  11. Set the properties of these controls in the following manner.

    Control

    Property

    Value

    label1

    Text

    (blank space)

     

    Name

    lblTest

    dateTimePicker1

    Name

    dtpTest

     

    Format

    Time

  12. In the designer, double-click dtpTest.

    The Code Editor opens to Private Sub dtpTest_ValueChanged.

  13. Modify the code so that it resembles the following.

    [Visual Basic]

    Private Sub dtpTest_ValueChanged(ByVal sender As Object, ByVal e As _
        System.EventArgs) Handles dtpTest.ValueChanged
        ctlAlarmClock1.AlarmTime = dtpTest.Value
        ctlAlarmClock1.AlarmSet = True
        lblTest.Text = "Alarm Time is " & Format(ctlAlarmClock1.AlarmTime, _
            "hh:mm")
    End Sub
    
  14. In Solution Explorer, right-click Test, and then click Set as StartUp Project.

  15. On the Debug menu, click Start Debugging.

    The test program starts. Note that the current time is updated in the ctlAlarmClock control, and that the starting time is shown in the DateTimePicker control.

  16. Click the DateTimePicker where the minutes of the hour are displayed.

  17. Using the keyboard, set a value for minutes that is one minute greater than the current time shown by ctlAlarmClock.

    The time for the alarm setting is shown in lblTest. Wait for the displayed time to reach the alarm setting time. When the displayed time reaches the time to which the alarm is set, the beep will sound and lblAlarm will flash.

  18. Turn off the alarm by clicking lblAlarm. You may now reset the alarm.

    This walkthrough has covered a number of key concepts. You have learned to create a composite control by combining controls and components into a composite control container. You have learned to add properties to your control, and to write code to implement custom functionality. In the last section, you learned to extend the functionality of a given composite control through inheritance, and to alter the functionality of host methods by overriding those methods.

See Also

Tasks

How to: Author Composite Controls

How to: Display a Control in the Customize Toolbox Dialog Box

Concepts

Varieties of Custom Controls

Other Resources

Component Authoring Walkthroughs