Introduction
This article describes a quick and simple approach to creating a gradient panel custom control. In this example, the standard Windows Forms Panel
container control is extended to provide a persistent gradient background; this differs from using an approach where a gradient background is created dynamically against the graphics context of the Panel
. Even though the background is persistent, it is dynamically updated whenever it is resized. Figure 1 illustrates the control in use:
Figure 1. Gradient Panel Control in Use
Getting Started
In order to get started, start up the Visual Studio 2005 IDE and open the included project. The solution consists of a WinForms project with a single form and a single custom control included. The form is used as a test bed for the custom control, and the custom control is an extension of the standard Windows Forms Panel
control. Figure 2 shows the Solution Explorer for this project:
Figure 2. Solution Explorer
The Code: Main Form
The main form of the application does not contain any meaningful code; the form itself contains two instances of the gradient panel control, and the gradient panel control is configured through the property editor for the purposes of the control test.
As the main form is trivial, I will not describe it any further in this document.
The Code: Gradient Panel Control
The GradientPanel
control is a custom control built to extend the standard Windows Forms Panel
control; the only additions made to the standard control are those required to render the gradient background at run time.
If you open the code up and examine the imports, you will note the following imports prior to the namespace and class declaration.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Text;
using System.Windows.Forms;
namespace GradientPanel
{
public partial class GradientPanel : System.Windows.Forms.Panel
{
After the class declaration, the code creates two member variables used to hold the beginning and ending colors of the gradient. After the declaration of these two variables, the class constructor calls the PaintGradient
method, which in turn paints the gradient on the panel:
System.Drawing.Color mStartColor;
System.Drawing.Color mEndColor;
public GradientPanel()
{
InitializeComponent();
PaintGradient();
}
protected override void OnPaint(PaintEventArgs pe)
{
base.OnPaint(pe);
}
The PaintGradient
method called in the class constructor is described next:
private void PaintGradient()
{
System.Drawing.Drawing2D.LinearGradientBrush gradBrush;
gradBrush =
new System.Drawing.Drawing2D.LinearGradientBrush(new
Point(0, 0), new Point(this.Width, this.Height),
PageStartColor, PageEndColor);
Bitmap bmp = new Bitmap(this.Width, this.Height);
Graphics g = Graphics.FromImage(bmp);
g.FillRectangle(gradBrush, new Rectangle(0, 0,
this.Width, this.Height));
this.BackgroundImage = bmp;
this.BackgroundImageLayout = ImageLayout.Stretch;
}
The PaintGradient
method is used to generate and size the linear gradient brush; this method creates a bitmap and applies the gradient to the bitmap. The background image property is then set to point at the bitmap, which results in the display gradient behind the panel. Using this approach, the controls placed in the container do not interfere with the display of the gradient.
At design time, the control user may set these properties in the property grid, or the values may be set in the code.
Figure 3. Properties for Start and End Colors
Summary
This article described an approach to making a persistent gradient background on a Panel
control based custom control. The control provided in the example could be dropped into other projects and used as is. The purpose of the control is to provide a tool for making a gradient panel without drawing the gradient directly on the graphics context of the panel page.