Click here to Skip to main content
15,881,812 members
Articles / Multimedia / GDI+

Colorful Microsoft Windows Forms Controls

Rate me:
Please Sign up or sign in to vote.
3.00/5 (2 votes)
16 Sep 2010CPOL1 min read 21K   10   7
Colorful Microsoft Windows Forms Controls

Get bored with the static appearance of Windows Forms 2.0 controls?! What about adding some exciting features for them in order to enhance the UI of our applications!

In this tutorial, I’ll show you how to create gradient colors as a background for those controls, let’s make our target as the Panel Control.

  1. Create a new “Class Library” project from Microsoft Visual Studio 2005 and name it as GradientPanelLibrary.
  2. Add a CustomControl item to the current solution and name it as GradientPanel.
  3. Switch to the code of the GradientPanel class and change the inherited class to be Panel instead of Control.
  4. Now let’s add some properties for the fancy panel control, we’ll need the following properties:
    C#
    ///
    /// The gradient first color 
    ///
    
    private Color Color1; 
    public Color BackColor1 
    { 
    get { return Color1; } 
    set { Color1 = value; this.Invalidate(); } 
    } 
    ///
    /// The gradient second color 
    /// private Color Color2; 
    public Color BackColor2 
    { 
    get { return Color2; } 
    set { Color2 = value; this.Invalidate(); } 
    }
    ///
    /// The gradient fill mode
    ///
    private LinearGradientMode Mode; 
    public LinearGradientMode FillMode 
    { 
    get { return Mode; } 
    set { Mode = value; this.Invalidate(); } 
    }
  5. All we’ve to do now is overriding the OnPaint method in order to draw the Panel with the gradient colors. Here’s the code:
    C#
    if (this.ClientRectangle.Height == 0 || this.ClientRectangle.Width == 0) return; 
    
    //get the graphics object of the control 
    Graphics g = pe.Graphics; 
    
    //The drawing gradient brush 
    LinearGradientBrush brush = new LinearGradientBrush(this.ClientRectangle,
        BackColor1, BackColor2, FillMode); 
    
    //Fill the client area with the gradient brush using the control's graphics object 
    g.FillRectangle(brush, this.ClientRectangle);

Now we can build the solution in order to generate the DLL for our fancy Panel, then add this generated DLL to the ToolBox, and then you can drag the GradientPanel Control from the toolbox and drop it into any Windows Forms to enhance your UI. Note that you can apply this technique to any control, so you’ll have special controls that make your UI as the best one.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Asset Technology Group
Egypt Egypt
I'm a professional components designer, web developer, UX engineer and 3d designer as well, I'm 4 years experienced .net software engineer and 7 years experienced 3d designer using 3D Max. I'm very interested in RIA technologies, prototyping and UX engineering.

Ahmed Said
Senior .Net Software Engineer

Comments and Discussions

 
GeneralMy vote of 1 Pin
DigitalRacer13-Sep-10 13:29
DigitalRacer13-Sep-10 13:29 
GeneralRe: My vote of 1 Pin
Ahmed_Said13-Sep-10 17:31
Ahmed_Said13-Sep-10 17:31 
GeneralRe: My vote of 1 Pin
dalek915-Sep-10 5:33
dalek915-Sep-10 5:33 
GeneralRe: My vote of 1 Pin
Ahmed_Said15-Sep-10 8:06
Ahmed_Said15-Sep-10 8:06 
GeneralRe: My vote of 1 Pin
dalek915-Sep-10 12:21
dalek915-Sep-10 12:21 
GeneralRe: My vote of 1 Pin
Ahmed_Said16-Sep-10 4:20
Ahmed_Said16-Sep-10 4:20 
GeneralRe: My vote of 1 Pin
Ahmed_Said16-Sep-10 4:19
Ahmed_Said16-Sep-10 4:19 

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.