Click here to Skip to main content
Licence CPOL
First Posted 28 May 2011
Views 10,526
Downloads 1,249
Bookmarked 27 times

Progress Bar Google Chrome

By | 29 May 2011 | Article
A Google Chrome themed progress, with customizable gradients.

ProgressBarPreview.png

Introduction

This article demonstrates creating a Google Chrome themed ProgressBar control from scratch.

Background

Any ProgressBar control relies on a value and its graphical representation. Google Chrome downloader has a circular representation of its progress.

Using the Code

ChromeProgressBar is designed the same way the Chrome ProgressBar works. This converts the progress values into a circular graphical representation.

private void PaintProgress(PaintEventArgs e)
{
   using( SolidBrush progressBrush = new SolidBrush(this.ProgressColor))
   {
       Rectangle rect = LayoutInternal.ProgressRectangle;

       rect.Inflate(-2, -2);
       rect.Height -= 2; rect.Width -= 2;

       float startAngle = -90;
       float sweepAngle = Progress / 100 * 360;
       
       e.Graphics.FillPie(progressBrush, rect, startAngle, sweepAngle);
   }
}

Here is how the circle and the segments are drawn, with the graphics path and four lines. The clipping region of the Graphics object is adjusted to clip the lines that run beyond the circle.

private void PaintBorder(PaintEventArgs e)
{
    GraphicsPath borderPath = new GraphicsPath();
    Rectangle progressRect = LayoutInternal.ProgressRectangle;
    borderPath.AddArc(progressRect, 0, 360);
    ....
    ....
    ....

    using (Pen borderPen = new Pen(this.BorderColor, 2))
    {
        e.Graphics.DrawPath(borderPen, borderPath);

        e.Graphics.DrawLine(borderPen,
            new Point(progressRect.Left + progressRect.Width / 2, progressRect.Top),
            new Point(progressRect.Left + progressRect.Width / 2, progressRect.Bottom));

        e.Graphics.DrawLine(borderPen,
            new Point(progressRect.Left, progressRect.Top + progressRect.Height / 2),
            new Point(progressRect.Right, progressRect.Top + progressRect.Height / 2));

        e.Graphics.DrawLine(borderPen,
             new Point(progressRect.Left ,progressRect.Top),
             new Point(progressRect.Right,progressRect.Bottom));

        e.Graphics.DrawLine(borderPen,
            new Point(progressRect.Left, progressRect.Bottom),
            new Point(progressRect.Right, progressRect.Top ));
    }

    e.Graphics.Clip = clip;
}

Points of Interest

Take a look at the InternalLayout class to see how the control layouts individual items on the control. The nested Internal Layout class takes ChromeProgressBar as an argument and provides all the necessary layout information required for the control leaving the painting process alone to the ChromeProgressBar.

Hope this will you with a good start in creating controls. Please do leave your valuable comments and suggestions.

License

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

About the Author

VallarasuS

Software Developer

India India

Member

Follow on Twitter Follow on Twitter
I code!

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 4 Pinmemberzuojunyuan16:16 23 Nov '11  
Generalanti-aliasing PinmemberUnruled Boy23:58 29 May '11  
GeneralRe: anti-aliasing Pinmembervallarasus0:46 30 May '11  
GeneralToo short for an article PinmemberVenkatesh Mookkan18:53 29 May '11  
GeneralArticle is a bit light PinmemberDaveAuld2:59 29 May '11  
GeneralRe: Article is a bit light Pinmembervallarasus8:11 29 May '11  
GeneralRe: Article is a bit light PinmemberVenkatesh Mookkan18:52 29 May '11  
GeneralRe: Article is a bit light Pinmembervallarasus7:16 1 Jun '11  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 29 May 2011
Article Copyright 2011 by VallarasuS
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid