Owner-draw Button






2.71/5 (28 votes)
Feb 4, 2003
1 min read

139524

850
A button-derived class that makes push buttons look like toolbar buttons
Introduction
I have always hated the so called "focused rectangle" Windows draws on push buttons having the focus. So I decided to derive my own class that does not display such a rectangle. Later, I put an image support for the button and that's how it began.
Using the Code
In the download is the whole solution, so you have just to unzip it and start Controls.sln and see all the files of the project (I suppose you have Visual Studio.NET). Then you may create your own push buttons from the "But
" class. I supplied three different constructors for it. The first one uses a bitmap object to display on the button:
public But(string str, Bitmap bitmap, int cx, int cy)
{
ResizeRedraw = true;
txt = str;//text caption of the button
bmp = bitmap;//bitmap image to display
bmp.MakeTransparent();
MeasureSizes(cx, cy);//cx and cy are the desired width and height for the button
}
The next is working with icon:
public But(string str, System.Drawing.Icon ico, int cx, int cy, int IconWidth, int IconHeight)
{
ResizeRedraw = true;
txt = str;
ico = new Icon(ico, IconWidth, IconHeight);
bmp = ico.ToBitmap();
bmp.MakeTransparent();
MeasureSizes(cx, cy);
}
And the last one (I use mostly) is without specifying cx
and cy
(in MeasureSizes
function, I supply the minimum size required for proper displaying of the button).
public But(string str, System.Drawing.Icon ico, int IconWidth, int IconHeight)
{
ResizeRedraw = true;
txt = str;
ico = new Icon(ico, IconWidth, IconHeight);
bmp = ico.ToBitmap();
bmp.MakeTransparent();
MeasureSizes(Width, Height);
Well, that's it! I hope my owner-drawn button will be useful. :)
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.