Click here to Skip to main content
15,885,680 members
Articles / Programming Languages / XML

Creating a Glass Button using GDI+

Rate me:
Please Sign up or sign in to vote.
4.86/5 (217 votes)
26 Mar 2013CPL2 min read 923.6K   21.1K   611   233
How to create an animating glass button using only GDI+ (and not using WPF)

Screenshots

Sample application using a standard glass button with image.

Sample application using a standard glass button with image.

The same application, but this time it has a customized glass button.

Sample application using a customized glass button.

MFC application which hosts four glass buttons.

MFC application which hosts four glass buttons.

Introduction

I bet you have already seen animated task buttons in Windows Vista. I have. I was wondering how to create a similar control. Fortunately, I found a web page which describes how to do that using the Microsoft Expression Blend (Creating a Glass Button: The Complete Tutorial). The glass button (and thus the whole application) created with the Microsoft Expression Blend requires .NET Framework 3.0 to run. Because some people cannot or do not want to use .NET Framework 3.0 yet, I have decided to rewrite that cool control using only GDI+ so it would work with .NET Framework 2.0.

"Converting" XAML to C# (GDI+)

The tutorial from the page mentioned above was easy to complete, and the generated XAML code was so understandable that there were no big issues with a "conversion."

For example, I have translated the following code:

XML
<Border HorizontalAlignment="Stretch" 
        Margin="0,0,0,0" x:Name="shine" 
        Width="Auto" CornerRadius="4,4,0,0">

  <Border.Background>
    <LinearGradientBrush EndPoint="0.494,0.889" 
                         StartPoint="0.494,0.028">
      <GradientStop Color="#99FFFFFF" Offset="0" />

      <GradientStop Color="#33FFFFFF" Offset="1" />
    </LinearGradientBrush>
  </Border.Background>

</Border>

into:

C#
using (GraphicsPath bh = CreateTopRoundRectangle(rect2, 4))
{
  int opacity = 0x99;
  if (isPressed) opacity = (int)(.4f * opacity + .5f);
  using (Brush br = new LinearGradientBrush(rect2, 
                          Color.FromArgb(opacity, shineColor),
                          Color.FromArgb(opacity / 3, shineColor),
                          LinearGradientMode.Vertical))
  {
    g.FillPath(br, bh);
  }
}

(This is only a fragment of the DrawButtonBackground method.)

Even the animation of a hovered button was easily obtained by using the Timer class. Unfortunately, an animation is not quite smooth when a glass button is quite big.

How to Use the GlassButton Class?

The GlassButton class derives from the Button class so it can be used in the same way. Displaying an image on a glass button is also supported now. Even the guidelines work fine in the Visual Studio's form designer.

History

  • 1.3.2 (02.11.2008) — Important! This is the last “standalone” version of the control. The next version will be included in a new project hosted at CodePlex.
    • Fixed a bug that caused the button's image to be disposed in certain situations
  • 1.3.1 (27.10.2008)
    • The source code is now available both in C# and VB.NET
    • Minor bugs fixed
  • 1.3 (19.11.2007)
    • The image is grayed when the button is disabled
    • Added property 'FadeOnFocus'
    • Improved performance
    • Minor bugs fixed
  • 1.2 (31.03.2007)
    • The 'disabled' look differs from the 'enabled' one
    • Added some 'PropertyChange' events
    • Improved performance
    • Split source code from compiled library and demo application
    • Added MFC demo application
    • Added toolbox bitmap
    • Minor bugs fixed
  • 1.1.1 (22.02.2007)
    • Minor bugs fixed
  • 1.1 (21.02.2007)
    • Added images support
  • 1.0 (19.02.2007)
    • First version

License

This article, along with any associated source code and files, is licensed under The Common Public License Version 1.0 (CPL)


Written By
Software Developer
Poland Poland
I am a graduate of Wroclaw University of Science and Technology, Poland.

My interests: gardening, reading, programming, drawing, Japan, Spain.

Comments and Discussions

 
GeneralRounded Corners Pin
edurveda18-Nov-09 9:18
edurveda18-Nov-09 9:18 
Generalback color transparency Pin
Member 39534807-Jul-09 23:46
Member 39534807-Jul-09 23:46 
GeneralRe: back color transparency Pin
Lukasz Sw.8-Jul-09 3:16
Lukasz Sw.8-Jul-09 3:16 
JokeThank you Pin
Mr_Coder18-Mar-09 18:50
Mr_Coder18-Mar-09 18:50 
Generalits some how good Pin
zanzona11-Jan-09 23:07
zanzona11-Jan-09 23:07 
GeneralUsing a GlassButton as the appearance for a RadioButton Pin
Meestor_X28-Nov-08 10:59
Meestor_X28-Nov-08 10:59 
GeneralRe: Using a GlassButton as the appearance for a RadioButton Pin
Lukasz Sw.12-Jan-09 11:49
Lukasz Sw.12-Jan-09 11:49 
QuestionRe: Using a GlassButton as the appearance for a RadioButton Pin
himoobd14-May-09 1:39
himoobd14-May-09 1:39 
Thanks a lot for your great work.However, I have the similar request as this thread.
I added the following code:
_imageButton.Checked = Checked;
_imageButton.CheckAlign = CheckAlign;

and did all the modification as you guided, but I see the button is not acting as Radio button.
It is not being toggled as when GlassRadioButton.appearance=Button

Could you please compare the behavior of RadioButton appearance and GlassRadioButton appearance when their appearance is set to Button?

Could you please convert this project t a cool Radio Button that can be toggled?

Thanks again for this cool hard work.

Have a nice time. Smile | :)
QuestionImage Animation Pin
Danish Sultan9-Nov-08 20:46
Danish Sultan9-Nov-08 20:46 
AnswerRe: Image Animation Pin
Lukasz Sw.12-Jan-09 11:13
Lukasz Sw.12-Jan-09 11:13 
GeneralExcellent! Pin
grt3kl19-Aug-08 11:27
grt3kl19-Aug-08 11:27 
GeneralRe: Excellent! Pin
Lukasz Sw.2-Sep-08 8:17
Lukasz Sw.2-Sep-08 8:17 
GeneralVB Version Pin
raing325-Jun-08 13:42
raing325-Jun-08 13:42 
GeneralRe: VB Version Pin
Lukasz Sw.25-Jun-08 23:47
Lukasz Sw.25-Jun-08 23:47 
GeneralAwesome Button! Pin
Engr4867-Jun-08 8:22
Engr4867-Jun-08 8:22 
GeneralRe: Awesome Button! Pin
Lukasz Sw.25-Jun-08 23:37
Lukasz Sw.25-Jun-08 23:37 
QuestionLicence Pin
Julian-w17-May-08 3:03
Julian-w17-May-08 3:03 
AnswerRe: Licence Pin
Lukasz Sw.17-May-08 6:10
Lukasz Sw.17-May-08 6:10 
GeneralRe: Licence Pin
Julian-w17-May-08 7:18
Julian-w17-May-08 7:18 
GeneralRe: Licence Pin
Julian-w18-May-08 2:50
Julian-w18-May-08 2:50 
GeneralRe: Licence Pin
Lukasz Sw.18-May-08 2:59
Lukasz Sw.18-May-08 2:59 
GeneralDrawToBitmap Pin
Jacob Shepherd20-Apr-08 20:41
Jacob Shepherd20-Apr-08 20:41 
GeneralRe: DrawToBitmap Pin
Lukasz Sw.21-Apr-08 5:33
Lukasz Sw.21-Apr-08 5:33 
GeneralRe: DrawToBitmap Pin
Jacob Shepherd28-Apr-08 14:11
Jacob Shepherd28-Apr-08 14:11 
GeneralRe: DrawToBitmap Pin
Lukasz Sw.29-Apr-08 7:42
Lukasz Sw.29-Apr-08 7:42 

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.