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

Pulse Button

By , 10 Oct 2009
 
The PulseButtonTest application

Introduction

This article demonstrates how to make a button with a dynamic element (pulses) using .NET 2.0 and GDI+. The control utilizes the .NET Framework's Button class.

The Button States

Here are the different button states:

The different button states

The MouseOver is just shown with a white (transparent) border and the focus is shown with a solid orange. The pressed state is the same as the default but without the reflex.

The Graphics

Here are the different elements of the button displayed:

The graphic elements of the PulseButton

Both Image and Text property can be set. The button supports two kinds of shapes: round and rectangular. The rectangular shape can have rounded corners.

Architecture

The control consists of a single class PulseButton that inherits from the System.Windows.Forms.Button class:

The PulseButton Class

Using the Code

To test the button, just download the demo project and build it using Visual Studio 2008.
Click the different PulseButtons in order to reference them in the property grid.

Here's a brief description of the properties:

  • ButtonColorBottom - The color of the centre's bottom
  • ButtonColorTop - The color of the centre's top
  • CornerRadious - The radius of the corner when Shape is set to rectangle
  • FocusColor - The color of the border that indicates focused
  • ForeColor - The color of the Text
  • Interval - The timer interval, default 50 [ms] (this property is not browsable)
  • NumberOfPulses - Number of pulses, 1 - 3 give the best results
  • PulseColor - The color of the pulses
  • PulseWidth - The width of the pulses - should be less than half of the control width
  • ShapeType - Round or Rectangle
  • PulseSpeed - The speed of the pulses, a value between 0.1 - 2 looks OK

Code

The pulses are updated using a System.Windows.Forms.Timer. The routine that renders the pulses looks like this:

/// <summary>
/// Handles the pulse timer tick.
/// </summary>
/// <param name="sender">The sender.</param>
/// <param name="e">The <see cref="System.EventArgs"/> 
/// instance containing the event data.</param>
private void PulseTimerTick(object sender, EventArgs e)
{
  pulseTimer.Enabled = false;
  InflatePulses();
  Invalidate();
  pulseTimer.Enabled = true;
}

/// <summary>
/// Inflates the pulses.
/// </summary>
private void InflatePulses()
{
  for (var i = 0; i < pulses.Length; i++)
    {
      pulses[i].Inflate(PulseSpeed, PulseSpeed);
      if (pulses[i].Width > Width || pulses[i].Height > Height || 
			pulses[i].X < 0 || pulses[i].Y < 0)
        pulses[i] = new RectangleF(pulseWidth, pulseWidth, 
		Width - 2 * pulseWidth, Height - 2 * pulseWidth);
      pulseColors[i] = Color.FromArgb((int)(Math.Min(pulses[i].X * 255 / 
					pulseWidth, 255)), PulseColor);
    }
}

The pulses are inflated using the PulseSpeed, when a pulse exceeds the bounds of the control then the size is reset. The pulses color gets more transparent when moving to the edge of the control.

Points of Interest

The regular Button control covers a lot more than what just meets the eye, so we gain a lot by inheriting from it. Another possibility is to inherit from ButtonBase and implement IButtonControl to avoid getting what you don't need, but that would be much more effort.

History

  • 10th October, 2009: First version of control 1.0

License

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

About the Author

Niel M.Thomas
Software Developer (Senior)
Denmark Denmark
Member
Name: Niel Morgan Thomas
Born: 1970 in Denmark
Education:
Dataengineer from Odense Technical University.
More than 15 years in IT-business.
Current employment:
Working with application development in a major Danish company that produce medical equipment.

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   
GeneralMy vote of 5memberclaudiotronic30 Apr '13 - 22:25 
GeneralMy vote of 5memberxiaox2y22 Nov '12 - 22:22 
GeneralMy vote of 5mvpKanasz Robert27 Sep '12 - 8:36 
QuestionVery nicememberCIDev7 Sep '12 - 11:03 
QuestionMy vote of 5memberPhilippe from Orleans15 Apr '12 - 23:22 
GeneralMy vote of 5memberJavedsamrt14 Jan '12 - 1:53 
QuestionProblem to download projectmemberEdward11128 Oct '11 - 11:43 
GeneralMy vote of 5memberDon_Hard15 Apr '11 - 15:14 
GeneralPerformancemembersecurigy26 Oct '10 - 20:24 
GeneralRe: PerformancememberNiel M.Thomas26 Oct '10 - 20:59 
Generalvery nice fullmemberbalajitkp19 Jul '10 - 19:30 
GeneralNicememberrushsky25 Oct '09 - 17:07 
GeneralVery NicememberHeywood12 Oct '09 - 0:23 
GeneralAbove and Beyondmemberaspdotnetdev10 Oct '09 - 22:06 
GeneralBeautifulmemberSimpzon10 Oct '09 - 9:29 
QuestionNicely structured and clearly explained.memberMike Rich10 Oct '09 - 8:58 
AnswerRe: Nicely structured and clearly explained.memberSimpzon10 Oct '09 - 9:25 
GeneralGood jobmemberLaserson10 Oct '09 - 8:00 
GeneralVeru nicememberEli Nurman10 Oct '09 - 7:57 

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 10 Oct 2009
Article Copyright 2009 by Niel M.Thomas
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid