Click here to Skip to main content
15,885,146 members
Articles / Programming Languages / C#

SpringButton

Rate me:
Please Sign up or sign in to vote.
4.54/5 (21 votes)
7 Jul 2006CPOL1 min read 62.5K   1.3K   30   9
A nice and simple button in C#.

Sample Image - springbutton.jpg

Introduction

This sample shows how to build a simple button with a nice graphic interface. This control is an example of using the drawings classes and the essential keywords. I decided to draw an unusual button like this picture below:

Sample Image - abutton.jpg

First step

First of all, I declare my new class:

C#
public class SpringButton : Control
{}

How to expose the proprieties

After that, I expose some essential proprieties like the size in pixel of the triangles and the second color of the button. All the other proprieties that I need are available in the System.Windows.Form.Control class.

C#
//this variable say if the
//mouse is over the contol
private bool Sel = false;
private Color BackColor2= Color.Gray;

public Color BackColorEnd
{
    get{return BackColor2; }
    set{BackColor2=value; 
        this.Invalidate();  }
}

int _triangle =25;
//I add a proprety
//that's the lenght of
//a triangle rectangle (45°)

public int Triangle
{
    get{return _triangle;}
    set{ 
        _triangle=value;
        //if lenght change I update 
        //the control
        this.Invalidate(true);
    }
}

Mouse "lighting"

Another important step is to set the control as 'selected' when the mouse is over it. So if the mouse is over the control, the back color and the border color are inverted (see the code in the OnPaint override).

C#
//set the button as "selected" on mouse entering
//and as not selected on mouse leaving
protected override void OnMouseEnter(EventArgs e)
{
    Sel = true;
    this.Invalidate();
}
protected override void OnMouseLeave(EventArgs e)
{
    Sel = false;
    this.Invalidate();
}

The core

The main step is this override of the OnPaint procedure. In this method, I draw directly on the control. First the central rectangle, and then the two triangles in the opposite corners. Here is the code:

C#
protected void PaintBut(PaintEventArgs e)
{
    //I select the rights color 
    //To paint the button...
    Color FColor = this.BackColorEnd;
    Color BColor = this.BackColor;
    if (Sel == true)
    {
      FColor = this.BackColor;
      BColor = this.BackColorEnd;
    }
    //and draw(see All the code...)

The delegate

I will now explain how to use the delegate. I declared this class that I use as EventArgs. When the user clicks on the control, if the click has been on a triangle and I delegate with the TriangleEventArgs that says the triangle has been clicked.

C#
protected override void OnMouseDown(MouseEventArgs e)
{ 
    base.OnClick(e);
    // if the user use this delegate...
    if (this.TriangleClick != null)
    {
    //check if the user click on the left triangle
    //or in the right with some geometrics  rules...
    //(is't possible to click all triangle at the same time )
    
    int x= e.X;
    int y= e.Y;
    
    if((x<_triangle)&&(y<=(_triangle-x))||
       (x>this.ClientRectangle.Width-_triangle)&&
       (y>=(this.ClientRectangle.Height-_triangle-x)) )
    {
        //try with right...
        TriangleClickEventArgs te= new TriangleClickEventArgs(false);
        //if not...
        if((x<_triangle)&&(y<=(_triangle-x)))
            te= new TriangleClickEventArgs(true);
           
            this.TriangleClick(this,te);
        }
    }
}

Credits

If you would like to see my other works, please visit my home page: http://zeppaman.altervista.org.

License

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


Written By
Chief Technology Officer
Italy Italy
I'm senior developer and architect specialized on portals, intranets, and others business applications. Particularly interested in Agile developing and open source projects, I worked on some of this as project manager and developer.

My programming experience include:

Frameworks \Technlogies: .NET Framework (C# & VB), ASP.NET, Java, php
Client languages:XML, HTML, CSS, JavaScript, angular.js, jQuery
Platforms:Sharepoint,Liferay, Drupal
Databases: MSSQL, ORACLE, MYSQL, Postgres

Comments and Discussions

 
QuestionNice Pin
User 1327559321-Sep-17 5:46
User 1327559321-Sep-17 5:46 
GeneralIButtonControl Pin
gabis15-Jul-06 20:06
gabis15-Jul-06 20:06 
GeneralAh! It's cool! Pin
Mahesh Sapre10-May-06 4:07
Mahesh Sapre10-May-06 4:07 
GeneralRe: Ah! It's cool! Pin
Daniele Fontani10-May-06 5:04
professionalDaniele Fontani10-May-06 5:04 
GeneralNice Pin
NinjaCross9-May-06 23:51
NinjaCross9-May-06 23:51 
GeneralRe: Nice Pin
Daniele Fontani10-May-06 0:31
professionalDaniele Fontani10-May-06 0:31 
Generaltyu Pin
pccai24-Nov-05 1:12
pccai24-Nov-05 1:12 
QuestionSpring Button Pin
mr chiken23-Nov-05 5:57
mr chiken23-Nov-05 5:57 
GeneralRe: Spring Button [modified] Pin
The_Mega_ZZTer9-Jul-06 13:50
The_Mega_ZZTer9-Jul-06 13:50 

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.