Click here to Skip to main content
15,881,757 members
Articles / Desktop Programming / Windows Forms

Custom ProgressBar Control

Rate me:
Please Sign up or sign in to vote.
4.76/5 (39 votes)
8 Jun 2011CPOL3 min read 227.6K   16.1K   122   56
Easy to use ProgressBar Control with many properties
ProgBarPlus

Introduction

Why another Progress Bar? The Standard ProgressBar was too limited and I couldn't find a custom control written that did all that I wanted. This is a UserControl with lots of properties and versatility. It shows minimum to maximum value progress or infinite back and forth progress. It is simple to use, just drop it on the form, adjust the design time properties and use it like the normal ProgressBar.

Background

This was my first UserControl that implemented some design time properties including an expandable property with the ExpandableObjectConverter TypeConverter and ControlDesigner. I have expanded the Design-Time editing in Version 2.0 using the techniques explained here: UITypeEditorsDemo[^] (Because of the new Editors, a revamp of the Properties occurred so there are some differences from the previous version). The demo also illustrates how to use a component or runtime BackgroundWorker to run different threads.

Control Properties

Here is a list of the primary properties:

  • BarStyleFill

    The fill style for the bar. Solid, Patterns, multiple color blends, and Image

  • BarColorBlend

    The Colors and Positions used for Gradient fills

  • BarColorSolid, BarColorSolidB

    The Colors used for Solid and Hatch fills

  • FocalPoints

    The movable Centerpoint and Focus Scales for the color blends

  • Shape

    The shape of the bar. Rectangle, Ellipse, Triangle, and Text

  • BorderColor, BorderWidth

    Change the border properties

  • Orientation

    Horizontal or Vertical progress

  • FillDirection

    Horizontal Right to Left or Left to Right and Vertical Bottom to Top or Top to Bottom

  • Corners, CornersApply

    Adjust the corner radius and apply to the border, bar, or both

  • ForeColor, TextAlignment, TextAlignmentVert, TextWrap, TextPlacement, Shadow

    Adjust the color, alignments, wrapping, and if the text appears over the control or moves with the bar

  • TextShow, TextFormat

    Templates for what text to display:

    • None
    • Value = Just the Value
    • ValueOfMax = Formats the Value with the Max i.e. '22 of 100'
    • Percent = Just the ValuePercent with a percent sign
    • FormatString = Enter any text here:
      • Enter {0} where you want the Value to show.
      • Enter {1} where you want the ValuePercent to show.
      • Enter {2} where you want the Max to show.
        i.e. '{0} rows of data out of {2} processed'
  • BarType

    Display Min to Max progress or Back and Forth infinite progress

  • BarLength, BarLengthValue

    Bar continues to expand with the Value or a fixed length of the bar moves with the value

  • Min, Max

    The minimum and maximum value of the ProgressBar

  • Value

    The current value of the ProgressBar

  • ShowDesignBorder

    Show a dotted line in design mode only if there is no border

Control Methods

  • ValuePercent()

    Get the Percent the value represents

  • ResetBar(opt value)

    Sets the Value to MinValue or MaxValue

  • Increment(opt value)

    Increase the value by one or the value given

  • Decrement(opt value)

    Decrease the value by one or the value given

Using the Code

Once you get the Progress Bar looking the way you want, add some code. You can directly change the Value property or use the Increment/Decrement methods:

VB.NET
With MyProgBarText
   .Max = 200
   .ResetBar()
   For i As Int32 = 0 To 200
       .Increment()
       // Add Your Code Here
   Next
End With

For the Infinite Progress Bar, change the BarType and change the CylonRun Boolean value:

VB.NET
MyProgBarCylon.BarType = MyProgBar.eBarType.CylonBar
MyProgBar.CylonRun = True

Points of Interest

The SmartTag makes it easy to customize the Progress Bar. All the important properties are organized to simplify the process.

ProgBarPlus

History

  • Version 1.0 February 2008
  • Version 2.0 November 2008
  • Version 3.0 June 2011
    • Many design and layout fixes

License

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


Written By
Software Developer
United States United States
I first got hooked on programing with the TI994A. After it finally lost all support I reluctantly moved to the Apple IIe. Thank You BeagleBros for getting me through. I wrote programs for my Scuba buisness during this time. Currently I am a Database manager and software developer. I started with VBA and VB6 and now having fun with VB.NET/WPF/C#...

Comments and Discussions

 
QuestionAbility to Center Form? Pin
M.Sanders9-Dec-13 8:35
M.Sanders9-Dec-13 8:35 
QuestionHow to put in visual basic Pin
Member 992891720-Mar-13 16:25
Member 992891720-Mar-13 16:25 
AnswerRe: How to put in visual basic Pin
Jeff Reith6-Apr-13 12:20
Jeff Reith6-Apr-13 12:20 
GeneralRe: How to put in visual basic Pin
SSDiver21126-Apr-13 13:07
SSDiver21126-Apr-13 13:07 
AnswerRe: How to put in visual basic Pin
SSDiver21126-Apr-13 13:08
SSDiver21126-Apr-13 13:08 
QuestionRe: How to put in visual basic Pin
Enzotech219-Oct-15 17:48
Enzotech219-Oct-15 17:48 
QuestionRe: How to put in visual basic Pin
Enzotech219-Oct-15 17:50
Enzotech219-Oct-15 17:50 
QuestionPlease i need help Pin
Samjoke6-Feb-13 17:47
Samjoke6-Feb-13 17:47 
Please help me !! ive managed to add the dll to my toolbar and when i try to build my solution i get errors just like ProgBar project wouldnt exist(ProgBar is referenced in my project and my project is set to depend on ProgBar)
Thank You!
AnswerRe: Please i need help Pin
SSDiver21126-Feb-13 17:57
SSDiver21126-Feb-13 17:57 
GeneralRe: Please i need help Pin
Samjoke7-Feb-13 4:48
Samjoke7-Feb-13 4:48 
GeneralMy vote of 5 Pin
Polinia11-Jan-13 7:07
Polinia11-Jan-13 7:07 
Bugi have this errors in the designer mode in visual studio 2012 Pin
spiritdead23-Aug-12 16:06
spiritdead23-Aug-12 16:06 
GeneralRe: i have this errors in the designer mode in visual studio 2012 Pin
spiritdead26-Aug-12 9:31
spiritdead26-Aug-12 9:31 
QuestionThanks Pin
Jose David Campo10-Jul-12 7:26
Jose David Campo10-Jul-12 7:26 
QuestionNice Control! Pin
soupman614-Jan-12 8:12
soupman614-Jan-12 8:12 
AnswerRe: Nice Control! Pin
SSDiver21124-Jan-12 13:04
SSDiver21124-Jan-12 13:04 
GeneralRe: Nice Control! Pin
soupman615-Jan-12 8:03
soupman615-Jan-12 8:03 
QuestionHow do I compile Pin
treaverh24-Nov-11 17:42
treaverh24-Nov-11 17:42 
AnswerRe: How do I compile Pin
SSDiver211226-Nov-11 17:04
SSDiver211226-Nov-11 17:04 
GeneralImpressive Pin
BillW338-Jun-11 5:49
professionalBillW338-Jun-11 5:49 
GeneralCan't find the .dll Pin
mikehilton11-Nov-09 7:31
mikehilton11-Nov-09 7:31 
GeneralRe: Can't find the .dll Pin
mikehilton11-Nov-09 8:12
mikehilton11-Nov-09 8:12 
GeneralRe: Can't find the .dll [modified] Pin
Onur Guzel27-Apr-11 0:04
Onur Guzel27-Apr-11 0:04 
GeneralRe: Can't find the .dll Pin
SSDiver211227-Apr-11 2:02
SSDiver211227-Apr-11 2:02 
GeneralInstalling the control in VB Pin
dedawson402420-Apr-09 9:30
dedawson402420-Apr-09 9:30 

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.