Click here to Skip to main content
15,885,757 members
Articles / Desktop Programming / MFC
Article

Images on XP-Style Buttons

Rate me:
Please Sign up or sign in to vote.
4.56/5 (36 votes)
27 Oct 20043 min read 397.5K   5.5K   190   72
A .NET Windows Forms Button using Visual Styles on Windows XP, that can display an image.

Introduction

One thing I love best about XP is the capability to have themed controls. You can even load new themes much like it's been possible with most window managers for the X Window System.

These themed controls can be used with .NET Windows Forms by supplying a manifest and – for some controls like Button – setting the FlatStyle property to FlatStyle.System.

Unfortunately, setting the FlatStyle property of a Button control to FlatStyle.System makes it impossible to display an image on the face of the button. Somehow, setting the Image property has no effect on these controls.

Background

A number of workarounds have been proposed, e.g., this one by MalteseFalcon. All approaches known to me use owner-drawn buttons to mimic the built in visual styles of XP but provide no ability to match third party visual styles.

The code snippet in this article makes it possible to have images on your XP-themed buttons while retaining the capability to adapt to custom visual styles.

The capability to draw controls using different visual styles was introduced by Microsoft with comctl32.dll, version 6, which has been shipping with the newest versions of Windows, i.e., Windows XP and Windows Server 2003. With this version, a number of new API calls have been introduced, among them is BCM_SETIMAGELIST which assigns an image list to a button control. The code in this article uses Platform Invocation Services (PInvoke) to use the BCM_SETIMAGELIST message.

The BCM_SETIMAGELIST message has another interesting property: if you supply more than one image in the image list, you can have the button display a different image for each of a number of states the button is in:

  • Normal
  • Hover
  • Pressed
  • Disabled
  • Focused

This behavior might be achieved using events as well, but using BCM_SETIMAGELIST, you get it without having to code the event handlers.

Using the code

The code wraps the System.Windows.Forms.Button class in a class called ImageButton. You can use this class just like a normal button except for the additional overloaded method SetImage. If you just want to display an image on the face of the button, you can use the method like this:

C#
Bitmap searchBitmap = new Bitmap("Search_16X16_32bpp.png");
ImageButton searchImageButton = new ImageButton();
searchImageButton.SetImage(searchBitmap);
...

If you want more control over the alignment, padding, or set images for different button states, use the overloaded methods:

C#
Bitmap goBitmap = new Bitmap("Go_48X48_32bpp.png");
Bitmap goHoverBitmap = new Bitmap("Go!_48X48_32bpp.png");
Bitmap goDisabledBitmap = new Bitmap("GoDisabled_48X48_32bpp.png");
ImageButton goImageButton = new ImageButton();
goImageButton.SetImage(goBitmap, goHoverBitmap, goBitmap, goDisabledBitmap, 
                       goBitmap, ImageButton.Alignment.Center);
...

Images with alpha channel are supported.

Points of Interest

Windows Forms ImageLists have a bug: if you add an Image to an ImageList, the alpha channel is lost. Therefore, the class in this article uses a workaround by resetting the pixel values of the Image after it has been added to the ImageList.

The demo image shows some buttons with the default XP visual style (top) as well as the custom Chaninja RC5 visual style (bottom).

The images in the demo are from the Qute collection originally drawn for Mozilla Firebird by Arvid "Quadrone" Axelsson.

History

  • February 24, 2004: Version 1.1.
    • Added alignment for non-XP-style buttons.
    • Added speed-up to Bitmap copying, contributed by Richard Deeming.
  • February 26, 2004: Version 1.2.
    • Added image scaling suggested by nxtwothou.
  • February 28, 2004: Version 1.3.
    • Added bicubic interpolation for rescaling.
  • May 8, 2004: Version 1.4.
    • Added drop down arrow capability
  • May 14, 2004: Version 1.5.
    • Added ThemedImage property for the designer.
    • Added auto-generation of disabled image (thanks to Carlos Leyva).
  • October 25, 2004: Version 1.6.
    • Fixed themes on/off detection bug (thanks to Leonid Kunin).
    • Added NAnt file.
    • Added I18n :-)

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior) UpdateStar
Germany Germany
Michael Ganss is Managing Director of UpdateStar. UpdateStar offers complete protection from PC vulnerability caused by outdated software. The award-winning UpdateStar offers comfortable software installation, uninstallation, and keeps all of your programs up-to-date. UpdateStar recognizes more than 135,000 software products and lets you know once an update is available for you - for optimized PC security.

Comments and Discussions

 
GeneralBroke out of the box! Pin
alleyes1-Sep-09 3:34
professionalalleyes1-Sep-09 3:34 
GeneralEasier Method Pin
Evit-Morningstar5-Jul-07 5:42
Evit-Morningstar5-Jul-07 5:42 
NewsCode is obsolete for .NET 2.0... Pin
xlouk7-Jul-06 4:13
xlouk7-Jul-06 4:13 
GeneralRe: Code is obsolete for .NET 2.0... Pin
ernie_hudds2-Apr-07 23:54
ernie_hudds2-Apr-07 23:54 
GeneralRe: Code is obsolete for .NET 2.0... Pin
xlouk3-Apr-07 1:24
xlouk3-Apr-07 1:24 
GeneralRe: Code is obsolete for .NET 2.0... Pin
JagdPanther14-Aug-07 5:37
JagdPanther14-Aug-07 5:37 
GeneralRe: Code is obsolete for .NET 2.0... [modified] Pin
DotNetInterest13-Aug-07 7:15
DotNetInterest13-Aug-07 7:15 
GeneralRe: Code is obsolete for .NET 2.0... Pin
xlouk19-Aug-07 22:32
xlouk19-Aug-07 22:32 
Generalbugs in DropdownButton Pin
PunCha21-Apr-06 3:28
PunCha21-Apr-06 3:28 
GeneralI could not get it work with VS 2003 pro Pin
riscy25-Feb-06 5:49
riscy25-Feb-06 5:49 
GeneralRe: I could not get it work with VS 2003 pro Pin
Michael Ganss26-Feb-06 23:38
Michael Ganss26-Feb-06 23:38 
Riscy,

right-click App.ico in the Solution Explorer and "Exclude from Project", then hit F5.



--
Michael Ganss
O&O Services GmbH
Question"pushed" button style for a dropdown button ? Pin
joebarthib6-Dec-05 4:58
joebarthib6-Dec-05 4:58 
AnswerRe: "pushed" button style for a dropdown button ? Pin
Michael Ganss6-Dec-05 22:08
Michael Ganss6-Dec-05 22:08 
GeneralRe: pushed button style for a dropdown button ? Pin
joebarthib7-Dec-05 23:20
joebarthib7-Dec-05 23:20 
GeneralImageCheckBox Pin
wolfgang_hg28-Nov-05 4:31
wolfgang_hg28-Nov-05 4:31 
QuestionNo XP Style Pin
Greg Osborne26-Oct-05 5:57
Greg Osborne26-Oct-05 5:57 
AnswerRe: No XP Style Pin
Michael Ganss26-Oct-05 21:55
Michael Ganss26-Oct-05 21:55 
QuestionProblem after using ImageButton Pin
RagulKumar29-Aug-05 17:28
RagulKumar29-Aug-05 17:28 
AnswerRe: Problem after using ImageButton Pin
Michael Ganss29-Aug-05 22:00
Michael Ganss29-Aug-05 22:00 
QuestionRe: Problem after using ImageButton Pin
Anonymous31-Aug-05 19:05
Anonymous31-Aug-05 19:05 
AnswerRe: Problem after using ImageButton Pin
Michael Ganss31-Aug-05 22:15
Michael Ganss31-Aug-05 22:15 
AnswerRe: Problem after using ImageButton Pin
Greg Osborne26-Oct-05 6:01
Greg Osborne26-Oct-05 6:01 
GeneralGDI-Exceptions due to unsafe code ?! Pin
wolfgang_hg25-Feb-05 5:51
wolfgang_hg25-Feb-05 5:51 
GeneralRe: GDI-Exceptions due to unsafe code ?! Pin
Michael Ganss25-Feb-05 6:02
Michael Ganss25-Feb-05 6:02 
GeneralRe: GDI-Exceptions due to unsafe code ?! Pin
Joel Lucsy3-Mar-05 9:14
Joel Lucsy3-Mar-05 9:14 

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.