Bunifu Progress Bar
Complete customization for appearance of the progress for a better user experience.
Bunifu Progress bar is a.NET control, that simulates the progress of a task with customizable visuals. We have taken the normal progress bar a notch higher with features such as the ability to visualize progress in multiple orientations, the ability to customize progress ranges with gradient colors, and the ability to set rich progress animations.

Bunifu Progress Bar can be added by simply locating or searching
BunifuProgressBar
in your toolbox and dragging it to your form as shown below.
Now to add a progress bar at run time, you can go to the form Load event and write or copy the following code snippet below:
C#
VB.NET
private void Form1_Load(object sender, EventArgs e)
{
//instatiate bunifu progress bar using Bunifu.UI.WinForms
BunifuProgressBar bunifuProgressBar = new BunifuProgressBar();
//set a value for the progress bar
bunifuProgressBar.Value = 80;
//set the location of the progress bar on the form
bunifuProgressBar.Location = new Point(180, 165);
//set the orientation of the progress bar
bunifuProgressBar.Orientation = Orientation.Horizontal;
//add the progress bar to the form
this.Controls.Add(bunifuProgressBar);
}
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
'instatiate bunifu progress bar using Bunifu.UI.WinForms
Dim bunifuProgressBar As New BunifuProgressBar()
'set a value for the progress bar
bunifuProgressBar.Value = 80
'set the location of the progress bar on the form
bunifuProgressBar.Location = New Point(180, 165)
'set the orientation of the progress bar
bunifuProgressBar.Orientation = Orientation.Horizontal
'add the progress bar to the form
Me.Controls.Add(bunifuProgressBar)
End Sub
Let's take a deep dive and get insights into the available properties on Bunifu Progress Bar.
This property allows you to set the background color for the progress track. It allows the use of RGB and HEX color formats.
This property gets or sets the color of the control's border. It supports the use of the RGB or the HEX color values.
This property gets or sets the radius truncation for the control's edges. It accepts only integer values as inputs, and the larger the int value, the more rounded the control's edges are.
This property gets or sets the thickness/height of the control's border. Only integer values are allowed in this property.

This property allows you to get or set a vertical or a horizontal position for the control in Windows Form.

The progress indicator color can be set as either a solid or a gradient color. To set a solid color, ensure that the
ProgressColorValueLeft
and ProgressColorValueRight
are set with the same color.Now to have a gradient color for the progress indicator, you can achieve easily by setting both
ProgressColorValueLeft
and ProgressColorValueRight
properties with different colors.
The value property gets or sets the current value of the progress within the range of the maximum and minimum progress values.
Similarly to the value property, the
ValueByTransition
( only accessible via code) allows you to set the value for the progress bar control and renders its progress at runtime with a smooth animation.Here's how to set a value using
ValueByTransition
:C#
VB.NET
private void Form1_Load(object sender, EventArgs e)
{
// set the initial value of the progress bar
bunifuProgressBar1.Value = 0;
// set the actual value for the progress bar
bunifuProgressBar1.ValueByTransition = 100;
}
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
' set the initial value of the progress bar
bunifuProgressBar1.Value = 0
' set the actual value for the progress bar
bunifuProgressBar1.ValueByTransition = 100
End Sub
The value of Bunifu Progress bar can as well be set using the
TransitionValue()
method. It takes two parameters: the first parameter is the progress value, while the second parameter is the time taken in milliseconds required to transition from an initial progress value to the actual progress value.The code below shows how the method has been used in the form's load event:
C#
VB.NET
private void Form1_Load(object sender, EventArgs e)
{
// set the initial value of the progress bar
bunifuProgressBar1.Value = 0;
// set the actual value with time taken to transition to the value
/*
* First parameter is the progress value
* Second parameter is time in milliseconds
*/
bunifuProgressBar1.TransitionValue(92, 1500);
}
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
' set the initial value of the progress bar
bunifuProgressBar1.Value = 0
' set the actual value with time taken to transition to the value
'
' * First parameter is the progress value
' * Second parameter is time in milliseconds
'
bunifuProgressBar1.TransitionValue(92, 1500)
End Sub
This property allows you to get or set the higher bound value of the progress range. The default value is set to 100.
This property allows you to get or set a lower bound value of the progress range. The default value is set to 0.
This property allows you to get or set time milliseconds which determines the duration that the progress indicator takes to move within the range of a value. The movement is a rich stylish motion or what most designers call a parallax movement.
The property is used together with the
Value
and ValueByTransition
properties to set the range of the animation. The Value
prop is set with the initial/start value while the ValueByTransition
is set with the final value of the progress bar.
You can now generate more elegant progress bars, which we think will improve the appearance and feel of your UI while also providing a better user experience.
Please contact us via chat in the bottom right corner of the screen if you have feedback or recommendations.
Last modified 1yr ago