Click here to Skip to main content
15,885,925 members
Articles / Programming Languages / Visual Basic

Fully Customizable XP Progress Bar (with examples)

Rate me:
Please Sign up or sign in to vote.
4.80/5 (120 votes)
20 Jan 2015CPOL2 min read 406K   13.8K   257   81
A progress bar like the WinXP progress bar control, but completely customizable.

Image 1

Introduction

I've developed an XpProgressBar that looks like the one used by the default WinXP theme. I have added a lot of features to fully customize its look.

Very important !!!

If you update the position of the progress bar in a tight loop or in a CPU intensive area and you feel that the bar is not repainted, use the following code in the place where you have problem:

C#
Application.DoEvents();

Please don't use Invalidate(), .Refresh() or .Update(). This can result in low performance and sometimes these don't work.

XpProgressBar features

The control offers the following features:

  • Good performance

    The XpProgressBar doesn't use much of the CPU because it uses a double buffer feature that performs painting operations offline to an image and later to the screen (this works at least three times faster).

  • Non flicking double buffer

    This control is implemented with a double buffer to provide smooth animation without any flicking and small paint time.

  • Anti alias text

    All the strings painted in the progress bar are drawn using anti alias hint to provide better quality.

  • Text shadow

    You can set the shadow to the text and customize its color and the alpha channel.

  • Fully customizable

    As you can see, every property of the progress bar can be set to provide a beautiful look.

Image 2

The properties of the control:

  • BackgroundImage
  • ColorBackground
  • ColorBarBorder
  • ColorBarCenter
  • ColorsXp

    Reset the colors to WinXP default.

  • ColorText
  • GradientStyle
  • SteepDistance
  • SteepWidth
  • TextShadow
  • TextShadowAlpha

GradientStyle

You can set the GradientStyle property to obtain some of these styles:

Image 3

Animation sample

The following picture shows an animation sample with different timers and looks:

Image 4

License

The control and the source code are completely free for commercial and non commercial use.

History

  • 2005-10-1: Article submitted.
    • 1.5
      • Improved the performance of Paint algorithms.
      • Alpha text
      • The image on the ProgressBar looks like a logo (with alpha of course, jeje).
      • Can disable Anti Alias Text.
    • 2.0
      • Vertical ProgressBar (not only horizontal)
      • Text align
      • Border color

Updates

Visit my page Marcos Meli and come back with updates soon.

License

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


Written By
Architect Devoo
Argentina Argentina
Marcos Meli v1.0 was released at august of 1980 by Francisco and Mabel Inc.
He´s from Bahia Blanca, Argentina.

He enjoy developing from the 12 years, has a degree in Computer Science, and of course, love this site and .NET in general.

He is the lead developer of the FileHelpers Library.

Marcos is also the co-funder of Devoo.Net.
A company that provides Object Oriented Components & Libraries for .NET developers (mostly open source)

Comments and Discussions

 
GeneralNever ending progressbar Pin
Carl Mercier1-Oct-05 15:30
Carl Mercier1-Oct-05 15:30 
GeneralRe: Never ending progressbar Pin
Marcos Meli1-Oct-05 15:41
Marcos Meli1-Oct-05 15:41 
GeneralRe: Never ending progressbar Pin
Marcos Meli2-Oct-05 9:55
Marcos Meli2-Oct-05 9:55 
GeneralRe: Never ending progressbar Pin
Craig G Fraser2-Oct-05 23:30
Craig G Fraser2-Oct-05 23:30 
GeneralRe: Never ending progressbar Pin
rjn5-Oct-05 11:06
rjn5-Oct-05 11:06 
GeneralRe: Never ending progressbar Pin
Kent Boogaart5-Oct-05 17:11
Kent Boogaart5-Oct-05 17:11 

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.