Bunifu Progress Bar
Complete customization for appearance of the progress for a better user experience.
Last updated
Complete customization for appearance of the progress for a better user experience.
Last updated
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:
Let's take a deep dive and get insights into the available properties on Bunifu Progress Bar.
1. BackColor
This property allows you to set the background color for the progress track. It allows the use of RGB and HEX color formats.
2. BorderColor
This property gets or sets the color of the control's border. It supports the use of the RGB or the HEX color values.
3. BorderRadius
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.
4. BorderThickness
This property gets or sets the thickness/height of the control's border. Only integer values are allowed in this property.
5. Orientation
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.
1. Value
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
:
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:
2. Maximum
This property allows you to get or set the higher bound value of the progress range. The default value is set to 100.
3. Minimum
This property allows you to get or set a lower bound value of the progress range. The default value is set to 0.
. AnimationSpeed
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.