C# Progress Bar Status Bar Panel






4.21/5 (15 votes)
Jul 1, 2004
1 min read

295073

4426
A reusable progress bar panel control for display inside the status bar.
Introduction
You can't just drop a progress bar control into a status bar panel, so I made this. This is actually the second time I've had to do this, so I got fed up and wanted to drop the code here so nobody would have to do it again.
Using the code
First thing to do is just drop a status bar on your form, and create a Panel
or two. You can mess around with the panel settings afterwards, but the easiest thing to do is select Owner-Draw on the status bar panel that you want to be the progress bar from the very beginning.
// Change the type of the panel to StatusBarProgressPanel on your Form
private StatusBarProgressPanel progressPanel;
// Initialize the measurement values
progressPanel.StartPoint = 0;
progressPanel.EndPoint = 100;
progressPanel.StepSize = 1;
progressPanel.ProgressPosition = 0;
Of course, once you change the type, you can change the properties using the Visual Studio Designer by simply clicking the "..." button of the Panel
's property when the status bar is selected in the form designer. I've included some handy category attributes for Visual Studio's nifty reflection logic to pick up.
// Sample usage:
// progress the bar by one "step"
progressPanel.Step();
// reset the progress bar to the initial state
progressPanel.Reset();
// start/stop an infinite animation thread for the bar
// this is useful when you don't know how long something
// is going to take, or if the progress is just unmeasurable
progressPanel.StartAnimation();
progressPanel.StopAnimation();
// By default the value of the percentage of progress is displayed
// setting the "ShowText" property to false disables it
progressPanel.ShowText = false;
You may also change the AnimationStyle
of the control. This basically controls the way the indicator is filled and emptied. The default is ProgressDisplayStyle.Infinate
which is a pulsating draw style. Much cooler graphics can be used, just modify the Parent_DrawItem
method.
/// <summary>
/// Statusbar Progress Display Styles
/// </summary>
public enum ProgressDisplayStyle
{
/// <summary>
/// A continually moving animation
/// </summary>
Infinite,
/// <summary>
/// A progress bar that fills from left to right
/// </summary>
LeftToRight,
/// <summary>
/// A progress bar that fills from right to left
/// </summary>
RightToLeft,
/// <summary>
/// A progress bar that fills from bottom to top
/// </summary>
BottomToTop,
/// <summary>
/// A progress bar that fills from top to bottom
/// </summary>
TopToBottom
}
History
- 7/1/2004 - Initial revision.