Click here to Skip to main content
Licence CPOL
First Posted 24 Feb 2010
Views 23,169
Downloads 1,478
Bookmarked 79 times

GlowButton - A Glowing Button Control

By | 28 Mar 2010 | Article
A simple media control button
screen.png

Just a Quickie...

Recently I came across the KMP Player software, and was looking over some of the graphic elements (and if you want to see some really good graphics work, I recommend you check it out). One of the elements that I need for a project was a simple glowing button control, used for the player controls, nothing too fancy, just an image that changes color and glows when hovered.

Getting an image to change color is rather trivial, it is done by modifying the color matrices of an ImageAttribute:

private void DrawColoredImage(Graphics g, Image img, Rectangle bounds, Color clr)
{
     using (ImageAttributes ia = new ImageAttributes())
     {
         ColorMatrix cm = new ColorMatrix();
         // convert and refactor color palette
         cm.Matrix00 = ParseColor(clr.R);
         cm.Matrix11 = ParseColor(clr.G);
         cm.Matrix22 = ParseColor(clr.B);
         cm.Matrix33 = ParseColor(clr.A);
         cm.Matrix44 = 1f;
         // set matrix
         ia.SetColorMatrix(cm);
         // draw
         g.DrawImage(img, bounds, 0, 0, img.Width, 
                     img.Height, GraphicsUnit.Pixel, ia);
     }
}

The ParseColor in the example code simply converts byte to float values.

glow.jpg

Getting the glow effect is also done using the ImageAttributes class. The image is first inflated, then the color palette and Alpha values are altered, then the clean image is drawn overtop. All this is done by first drawing the control elements into a buffer bitmap:

private void DrawButton()
{
    if (this.Image == null)
        return;

    Rectangle bounds = new Rectangle(0, 0, this.Width, this.Height);
    Rectangle imageBounds = GetImageBounds(bounds, this.Image);

    // draw into a buffer
    using (Graphics g = Graphics.FromImage(_bmpBuffer))
    {
        ...
    }
    // draw the buffer
    using (Graphics g = Graphics.FromHwnd(this.Handle))
        DrawImage(g, _bmpBuffer, bounds);
}

The control comes with most of the properties exposed, like various color states, and optional focus mask and border. Here's a list of the properties:

  • Checked: Checkbox state
  • CheckedBorderColor: The checked border color
  • CheckStyle: Checkbox style
  • FocusedMask: Draw a focused mask
  • ImageDisabledColor: The image disabled color
  • ImageFocusedColor: The image focused color
  • ImageGlowColor: The border glow color
  • ImageHoverColor: The image hover color
  • ImagePressedColor: The image pressed color
  • ImageGlowFactor: Glow factor depth
  • FocusOnHover: Focus on button hover

History

  • 24th February, 2010: Initial post
  • 27th March, 2010: Article screen shot and source code

License

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

About the Author

Steppenwolfe

Network Administrator

Canada Canada

Member



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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmembertolw0:17 6 Jun '11  
GeneralSet BackColor as Transparent! Pinmemberw.y.zhang22:22 31 Mar '10  
GeneralUpdated PinmemberSteppenwolfe5:43 28 Mar '10  
GeneralNice but you contradict yourself... Pinmemberje_gonzalez13:03 25 Feb '10  
GeneralRe: Nice but you contradict yourself... PinmemberSteppenwolfe14:51 25 Feb '10  
GeneralNew Version PinmemberSteppenwolfe10:18 25 Feb '10  
Generalnice control PinmemberMember 41308590:03 25 Feb '10  
GeneralRe: nice control PinmemberSteppenwolfe3:01 25 Feb '10  
Generalnice control but... PinmemberDanielGreen21:14 24 Feb '10  
GeneralCool PinmemberJohnny J.19:30 24 Feb '10  
GeneralRe: Cool PinmemberSteppenwolfe3:00 25 Feb '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 28 Mar 2010
Article Copyright 2010 by Steppenwolfe
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid