Click here to Skip to main content
15,881,753 members
Articles / Programming Languages / C#

Writing Your Custom Control: Step by Step

Rate me:
Please Sign up or sign in to vote.
4.68/5 (147 votes)
31 Mar 20022 min read 854.3K   21.7K   239   75
Making a cute button of two semi-transparent user-changeable colors

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 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 change the base class of the cuteButton:

    Override the following line:

    C#
    public class cuteButton : System.Windows.Forms.Control

    by this one:

    C#
    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:

    C#
    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() method 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:

    C#
    // 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

C#
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 its properties (cuteColor1, cuteColor2, cuteTransparent1, cuteTransparent2).

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

Good luck.

History

  • 25th March, 2002: Initial version

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.


Written By
Software Developer (Senior)
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionSystem.Windows.Forms.Control Pin
Member 9244772-Mar-20 16:43
Member 9244772-Mar-20 16:43 
QuestionCustomControlFor Listbox Pin
namrata kongutte19-May-15 21:11
namrata kongutte19-May-15 21:11 
AnswerRe: CustomControlFor Listbox Pin
Member 9244772-Mar-20 16:45
Member 9244772-Mar-20 16:45 
QuestionCan not drag and drop Custom Control in window form VS2010 Pin
SaurabhSoni29-Mar-14 5:06
SaurabhSoni29-Mar-14 5:06 
QuestionCustom Control in C#.Net Pin
Ammar alzubairy11-Jun-13 4:50
Ammar alzubairy11-Jun-13 4:50 
GeneralMy vote of 2 Pin
Lagkip4-Jun-13 9:22
Lagkip4-Jun-13 9:22 
GeneralMy vote of 5 Pin
batime3-Dec-12 0:07
batime3-Dec-12 0:07 
QuestionJust a question Pin
Grumbscut27-Nov-12 22:12
Grumbscut27-Nov-12 22:12 
AnswerRe: Just a question Pin
Grumbscut28-Nov-12 2:26
Grumbscut28-Nov-12 2:26 
Question5 stars Pin
Isuru Nanayakkara21-Nov-12 0:38
Isuru Nanayakkara21-Nov-12 0:38 
GeneralMy vote of 5 Pin
amish kumar2-Nov-12 21:03
amish kumar2-Nov-12 21:03 
GeneralMy vote of 5 Pin
avidela17-Oct-12 11:48
professionalavidela17-Oct-12 11:48 
Questionexcellence Pin
daghune3-Sep-12 23:30
daghune3-Sep-12 23:30 
GeneralMy vote of 2 Pin
daghune3-Sep-12 23:14
daghune3-Sep-12 23:14 
GeneralRe: My vote of 2 Pin
amirmohamad3-Sep-12 23:30
amirmohamad3-Sep-12 23:30 
GeneralRe: My vote of 2 Pin
daghune3-Sep-12 23:32
daghune3-Sep-12 23:32 
GeneralRe: My vote of 2 Pin
amirmohamad3-Sep-12 23:33
amirmohamad3-Sep-12 23:33 
GeneralRe: My vote of 2 Pin
daghune3-Sep-12 23:34
daghune3-Sep-12 23:34 
GeneralArsefuckr Pin
bartjuh1027-Dec-12 10:03
bartjuh1027-Dec-12 10:03 
Questiongreat article Pin
Wrangly10-Jan-12 22:15
Wrangly10-Jan-12 22:15 
QuestionSuper Pin
Member 84713099-Dec-11 2:48
Member 84713099-Dec-11 2:48 
GeneralMy vote of 5 Pin
GuyThiebaut29-Oct-11 6:21
professionalGuyThiebaut29-Oct-11 6:21 
GeneralMy vote of 4 Pin
Member 772135016-Apr-11 0:50
Member 772135016-Apr-11 0:50 
GeneralGood Job Pin
Nueman9-Feb-11 16:36
Nueman9-Feb-11 16:36 
QuestionIs it PRO version required? Pin
BogdanJankowski1-Mar-10 4:27
BogdanJankowski1-Mar-10 4:27 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.