Click here to Skip to main content
Click here to Skip to main content

Writing your Custom Control: step by step

By , 31 Mar 2002
 

Sample Image - cuteButton.jpg

Introduction

This is a short and simple demonstration of .NET framework's capability of creating custom controls.

Here I'm going to make a custom control and then, test my control in a Windows application. I have implemented some custom properties for my control, so you can learn how it is done in C#.

Building the Control

  1. Open the Visual Studio and start a new project. Your project must be based on the Windows Control Library template. Call your project ctlCuteButton and click OK.

  2. Once you have your project open, delete the UserControl from the project. Just remove it because the 'User Control' is not exactly what we need here.

  3. Now go to the 'Project' menu: Project->Add User Control... and select the Custom Control template there. 'Custom Control' is what we need in this case. You may call it cuteButton. Now click OK. A new Custom control has been added to your project.

  4. The first thing we must do here is to change the base class of the cuteButton:

    Override the following line:

    public class cuteButton : System.Windows.Forms.Control

    by this one:

    public class cuteButton : System.Windows.Forms.Button

    Now your control is based on the System.Windows.Forms.Button class.

  5. Now let's create some custom properties for our control. This is done by inserting the following code inside the cuteButton class:

    private Color m_color1 = Color.LightGreen;  //first color
    private Color m_color2 = Color.DarkBlue;   // second color
    private int m_color1Transparent = 64; // transparency degree 
                                          // (applies to the 1st color)
    private int m_color2Transparent = 64; // transparency degree 
                                          //  (applies to the 2nd color)
    
    public Color cuteColor1
    {
        get { return m_color1; }
        set { m_color1 = value; Invalidate(); }
    }
    
    public Color cuteColor2
    {
        get { return m_color2; }
        set { m_color2 = value; Invalidate(); }
    }
    
    public int cuteTransparent1
    {
        get { return m_color1Transparent; }
        set { m_color1Transparent = value; Invalidate(); }
    }
    
    public int cuteTransparent2
    {
        get { return m_color2Transparent; }
        set { m_color2Transparent = value; Invalidate(); }
    }

    The Invalidate() methoid is used to refresh the design view and all controls inside (the tip from Tom Welch).

  6. And the last thing to do before compiling our control is to override the Paint event. So let's do it:

    // Calling the base class OnPaint
    base.OnPaint(pe);
    // Create two semi-transparent colors
    Color c1 = Color.FromArgb(m_color1Transparent , m_color1);
    Color c2 = Color.FromArgb(m_color2Transparent , m_color2);
    Brush b = new System.Drawing.Drawing2D.LinearGradientBrush(ClientRectangle, 
                                                               c1, c2, 10);
    pe.Graphics.FillRectangle (b, ClientRectangle);
    b.Dispose();
  7. Now you may compile the control by pressing <Ctrl>+<Shift>+<B>.

Here is the complete contents of cuteButton.cs file (just in case…):

COMPLETE CODE:

using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;


namespace ctlCuteButton
{
    /// <summary>
    /// Summary description for cuteButton.
    /// </summary>

    public class cuteButton : System.Windows.Forms.Button
    {
    private Color m_color1 = Color.LightGreen; // first color
    private Color m_color2 = Color.DarkBlue;  // second color
    private int m_color1Transparent = 64; // transparency degree 
                                             // (applies to the 1st color)
    private int m_color2Transparent = 64; // transparency degree 
                                          //  (applies to the 2nd color)

    public Color cuteColor1
    {
        get { return m_color1; }
        set { m_color1 = value; Invalidate(); }
    }

    public Color cuteColor2
    {
        get { return m_color2; }
        set { m_color2 = value; Invalidate(); }
    }

    public int cuteTransparent1
    {
        get { return m_color1Transparent; }
        set { m_color1Transparent = value; Invalidate(); }
    }

    public int cuteTransparent2
    {
        get { return m_color2Transparent; }
        set { m_color2Transparent = value; Invalidate(); }
    }


    public cuteButton()
    {
    }


    protected override void OnPaint(PaintEventArgs pe)
    {
        // Calling the base class OnPaint
        base.OnPaint(pe);
        // Create two semi-transparent colors
        Color c1 = Color.FromArgb
            (m_color1Transparent , m_color1);
        Color c2 = Color.FromArgb
            (m_color2Transparent , m_color2);
        Brush b = new System.Drawing.Drawing2D.LinearGradientBrush
            (ClientRectangle, c1, c2, 10);
        pe.Graphics.FillRectangle (b, ClientRectangle);
        b.Dispose();
    }
}
}

Testing the Control

  1. Open a new instance of the VS .NET. Create a new project choosing the Windows Application template.

  2. From a new Windows Forms project, we can add the compiled custom control to the toolbox. I do this by right-clicking the toolbox, selecting Customize Toolbox, and from the .NET Framework Components tab, clicking Browse and locating the Control Library DLL # (in our case, ctlCuteButton\bin\debug\cuteButton.dll). The component cuteButton will then appear in the Toolbox.

    You can play a bit changing it’s properties (cuteColor1, cuteColor2, cuteTransparent1, cuteTransparent2).

That’s all so far about building and using custom controls.

Good Luck.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Alexandr_K
Web Developer
Canada Canada
Member
Years of programming...

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralRe: My vote of 2memberdaghune3 Sep '12 - 23:32 
GeneralRe: My vote of 2memberamirmohamad3 Sep '12 - 23:33 
GeneralRe: My vote of 2memberdaghune3 Sep '12 - 23:34 
GeneralArsefuckrmemberbartjuh1027 Dec '12 - 10:03 
Questiongreat articlememberWrangly10 Jan '12 - 22:15 
QuestionSupermemberMember 84713099 Dec '11 - 2:48 
GeneralMy vote of 5 [modified]memberGuyThiebaut29 Oct '11 - 6:21 
GeneralMy vote of 4memberMember 772135016 Apr '11 - 0:50 
GeneralGood JobmemberRockingDownTheHighway9 Feb '11 - 16:36 
QuestionIs it PRO version required?memberBogdanJankowski1 Mar '10 - 4:27 
QuestionHow to anchor a custom control?memberChanHwiHwang10 Nov '09 - 17:01 
GeneralThanksmemberrutstyle20 Jun '09 - 0:09 
AnswerWindows Forms Control Library =~ Windows Control Library, also a partial class errormemberdblanchard17 Mar '09 - 15:00 
General3Ksmemberwhatcsu3 Aug '08 - 13:14 
GeneralThanksmemberLaurent Cozic2 Aug '08 - 9:10 
QuestionInclude control during runtimememberVagga Raghavendra10 Aug '07 - 20:06 
GeneralLoad custom control dynamicallymemberVINH TRAN20 Jul '07 - 12:11 
GeneralNice...memberESTANNY13 Jul '07 - 13:41 
GeneralThanks! Just what I neededmemberhalciber10 Apr '07 - 9:36 
GeneralTransparent controlmemberarijit_datta268 Mar '07 - 20:38 
GeneralMany thx!memberflyingchen10 Feb '07 - 19:21 
Generalvery goodmemberZhi Chen1 Feb '07 - 15:33 
Questioncustom control on window cememberbuithelan31 Jan '07 - 15:57 
QuestionTo make Scrollable Contextmenustripmemberjeyaseelanmca5 Dec '06 - 17:31 
QuestionHow lock to change the font and colourmemberNata;19 Jun '06 - 23:58 
GeneralDoes not work for textboxmembermonal12315 May '06 - 20:59 
QuestionInstaller for your new control.memberBertus Kruger15 Mar '06 - 12:10 
Generalusing UserControl for application webformmemberonebitcuongdv7 Dec '05 - 0:32 
Generalgreat jobmemberbmustata19 Feb '05 - 9:10 
Generalcustomer controlsmemberabidkayani13 Jan '05 - 10:40 
GeneralUsing standard control on ToolBarmemberjimsleon7 Jul '04 - 19:12 
QuestionCan I change the Back Color of a Toolbar ControlsussQumer Mumtaz Goraya18 May '04 - 20:32 
Generalgreat jobmembervishwa_3120 Apr '04 - 13:04 
Generalself contained codememberBoudewijnL23 Nov '03 - 20:40 
GeneralRe: self contained codememberCharlie Williams7 Dec '03 - 15:48 
QuestionCustom Control in SAME project!?memberomoshima14 Jul '03 - 17:18 
AnswerRe: Custom Control in SAME project!?editorHeath Stewart29 Jul '03 - 1:48 
AnswerRe: Custom Control in SAME project!?sitebuilderUwe Keim19 Aug '03 - 23:41 
GeneralRe: Custom Control in SAME project!?memberOlu2Learn15 Feb '06 - 14:46 
Generalown events handlermemberazusakt9 Jul '03 - 20:51 
GeneralErrorsusskurapey20 Jun '03 - 9:11 
GeneralRe: ErrormemberRay Cassick20 Jun '03 - 9:17 
GeneralRe: Errormembercuongbk15 Jan '04 - 5:55 
GeneralRe: ErrorsussAnonymous16 Jul '04 - 14:18 
GeneralTextBox custom componentsussAnonymous13 Jun '03 - 4:22 
GeneralVery nice...memberChristian Giacomi13 Jun '03 - 3:31 
Generalhelp me,vertically input textmemberjirigala3 Dec '02 - 19:17 
GeneralHi there!memberOrlanda Ramos22 Jun '02 - 10:20 
GeneralProblem occuredmemberAnonymous16 May '02 - 13:47 
GeneralRe: Problem occuredmemberdblanchard17 Mar '09 - 16:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 1 Apr 2002
Article Copyright 2002 by Alexandr_K
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid