Click here to Skip to main content
6,595,444 members and growing! (21,773 online)
Email Password   helpLost your password?
Desktop Development » Button Controls » General     Intermediate

Color Button for the .NET Compact Framework

By Jon Nethercott

Shows how to write a color button control for the .NET compact framework.
C#, VC7.1, Windows, .NET 1.1VS.NET2003, Dev
Posted:4 Jan 2004
Views:146,520
Bookmarked:51 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
8 votes for this article.
Popularity: 3.84 Rating: 4.25 out of 5
1 vote, 12.5%
1

2
1 vote, 12.5%
3
2 votes, 25.0%
4
4 votes, 50.0%
5

Sample Image - ColourButtons.gif

Introduction

I have written this article for two reasons. The first is that, while the standard .NET framework allows you to change the color of buttons, this feature is missing from the compact framework. The buttons in the compact framework are a boring black on grey. The second reason for writing this article is that, whilst it is relatively straightforward to write standard controls, writing controls for the compact framework is slightly more challenging, since there isn't a project template for the compact framework controls in Visual Studio. I would imagine that both of these issues will be resolved in time by Microsoft, but for the time being, a user control is required and this control is not trivial to write.

Creating the Control

There are already several articles describing how to create a control for the compact framework, so I won't duplicate those articles here. In my opinion, one of the better articles is on the MSDN site: Creating Custom Controls for the .NET Compact Framework by Chris Kinsman, Vergent Software, September 2002. It took me a while to get this to work, but that turned out to be because there are quite a few steps to follow and you have to make sure you don't miss any out!

The Code

Having created a blank control, I set about changing it to work as a button. I wanted to create a button that behaved the same way as the standard .NET CF button, but had more colors. I decided to give the button, 4 new color properties. These are:

Color m_NormalBtnColour = Color.LightYellow;
Color m_NormalTxtColour = Color.Blue;
Color m_PushedBtnColour = Color.Blue;
Color m_PushedTxtColour = Color.Yellow;

The properties of these are exposed by the control using the following code (which shows one of the four - the others are identical with different names and descriptions):

#if NETCFDESIGNTIME
    [Category("Appearance")]
    [DefaultValue(3)]
    [Description("The normal colour of the button.")]
#endif
public Color NormalBtnColour
{
    set
    {
        m_NormalBtnColour = value;
        Invalidate();
    }
    get
    {
        return m_NormalBtnColour;
    }
}

Note that I invalidate the control after the color has been changed. This is so that the control is redrawn when the color is changed whilst designing the form. I also had to remove the two standard color properties: BackColor and ForeColor. I did this with the following code (one of two shown):

#if NETCFDESIGNTIME
    false)>
    [EditorBrowsable(EditorBrowsableState.Never)]
#endif
public override Color BackColor
{
    set
    {;}
    get
    { return new Color(); }
}

Browsable(false) removes the item from the property window, and EditorBrowsable(Never) prevents intellisense from displaying the property. Finally, for the attributes, I added the button state, which is either normal or pushed.

public enum States 
{ 
    Normal, 
    Pushed 
}

States m_state;

This was set to normal in the constructor, and would be set to pushed on a mouse down event and back to normal on a mouse up event. Also, in order that the button was correctly drawn in design mode, OnResize was overridden to invalidate the control when the button was resized.

protected override void OnMouseDown(
            System.Windows.Forms.MouseEventArgs e) 
{
    m_state = States.Pushed; 
    // button receives input focus

    Focus();  
    base.OnMouseDown(e); 
    Invalidate(); 
} 

protected override void OnMouseUp(
            System.Windows.Forms.MouseEventArgs e) 
{
    m_state = States.Normal;
    base.OnMouseUp(e);
    Invalidate();
}

protected override void OnResize(EventArgs e)
{
    base.OnResize(e);
    Invalidate();
}

The only thing left to do was the OnPaint method. This draws the button using the two normal colors if the button is in the normal state, or the two pushed colors if the button is in the pushed state.

protected override void OnPaint(PaintEventArgs e) 
{
    Graphics graphics = e.Graphics;

    Pen pen;
    SolidBrush brush;
    SolidBrush textBrush;

    //Work out the colours that we should be using

    // for the text and background

    if (m_state == States.Normal)
    {
        brush = new SolidBrush(m_NormalBtnColour);
        textBrush = new SolidBrush(m_NormalTxtColour);
        pen = new Pen(m_NormalTxtColour);
    }
    else
    {
        brush = new SolidBrush(m_PushedBtnColour);
        textBrush = new SolidBrush(m_PushedTxtColour);
        pen = new Pen(m_PushedTxtColour);
    }

    //Draw a rectangle and fill the inside

    graphics.FillRectangle(brush, 0, 0, Width, Height);
    graphics.DrawRectangle(pen, 0, 0, Width-1, Height-1);

    //Create a font based on the default font

    int fontHeight = 10;
    Font font = new Font(FontFamily.GenericSerif,
               fontHeight, FontStyle.Bold);

    //Find out the size of the text

    SizeF textSize = new SizeF();
    textSize = e.Graphics.MeasureString(Text, font);

    //Work out how to position the text centrally

    float x=0,y=0;
    if (textSize.Width < Width)
        x = (Width - textSize.Width) /2;
    if (textSize.Height < Height)
        y = (Height - textSize.Height) /2;

    //Draw the text in the centre of the button using

    // the default font

    graphics.DrawString(Text, font, textBrush, x, y);
}

As described in the "building controls" articles, there are 2 solutions, one for the actual control, and one for the control in the designer. I wrote a batch file to build both solutions and copy the assemblies to the correct location, so that they could be picked up by Visual Studio. Once the controls have been added to "My User Controls", they can be dragged onto forms and manipulated just like any other control.

History

  • 05 Jan 2004 - Initial version.

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

About the Author

Jon Nethercott


Member
Jon studied at Kingston Polytechnic in the early 80s for a BSc(Hons) in Electronic Systems Engineering. His first job was at Marconi in Frimley - initially as a hardware engineer, and later in the applications group, writing defence apps in Coral66. He then worked on PDA apps at DIP Research in Guildford, and is currently a principal software engineer at Airspan communications in Uxbridge. Most of Jon's experience is using Microsoft products, C++, and more recently C# and the .NET technologies.
Occupation: Web Developer
Company: CodeWrite Ltd.
Location: United Kingdom United Kingdom

Other popular Button Controls articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 21 of 21 (Total in Forum: 21) (Refresh)FirstPrevNext
QuestionWhere do you set the default size of the button? Pinmemberlagu265321:32 27 Sep '06  
GeneralCORAL 64 / CORAL66 Pinmemberblashyrk1230:06 30 Mar '06  
GeneralFonts not changing PinmemberJay Dubal4:59 31 May '05  
GeneralRe: Fonts not changing PinmemberJay Dubal5:02 31 May '05  
GeneralMisc. Comments PinmemberWhizzard999211:19 21 Oct '04  
GeneralTrubles with adding control to the form PinmemberAndrew Khimenko2:05 14 Jul '04  
GeneralRe: Trubles with adding control to the form PinmemberJon Nethercott10:08 14 Jul '04  
GeneralIncrease draw speed PinmemberRojM18:13 8 Jun '04  
GeneralRe: Increase draw speed PinmemberJon Nethercott13:56 9 Jun '04  
General3D style buttons PinmemberGlamiac8:32 23 Jan '04  
GeneralRe: 3D style buttons PinmemberJon Nethercott12:52 25 Jan '04  
GeneralRe: 3D style buttons PinmemberCJCraft.com14:30 18 Feb '04  
GeneralColor Button is disabled in the toolbox PinsussGourou9:29 14 Jan '04  
GeneralRe: Color Button is disabled in the toolbox PinmemberJon_UK396:54 18 Jan '04  
Generalnice article PinmemberJermo8:52 8 Jan '04  
GeneralNon trivial control? PinmemberCarlos H. Perez6:10 6 Jan '04  
GeneralRe: Non trivial control? PinmemberJon_UK398:18 6 Jan '04  
GeneralEmulator Skin PinmemberFurty14:59 5 Jan '04  
GeneralRe: Emulator Skin PinmemberJon_UK3922:13 5 Jan '04  
GeneralRe: Emulator Skin PinmemberFurty22:39 5 Jan '04  
GeneralRe: Emulator Skin PinmemberJon_UK390:03 6 Jan '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 4 Jan 2004
Editor: Smitha Vijayan
Copyright 2004 by Jon Nethercott
Everything else Copyright © CodeProject, 1999-2009
Web11 | Advertise on the Code Project