Bunifu Slider is a control that allows the user to select a value from a range of values.
Simply locate Bunifu Slider in your toolbox and drag it to your form
To add Bunifu Slider at run time we will use the Load event handler to run the code that adds our Slider to our form as shown below.
private void Form1_Load(object sender, EventArgs e){​var slider = new Bunifu.Framework.UI.(); this.Controls.Add(slider);}
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.LoadDim slider As New Bunifu.Framework.UI.BunifuSlider Controls.Add(slider)End Sub​
This property allows you to set the background color of the slider
This property allows you to set the border radius of the corners the slider
This property allows you to set the value selected by the user
This property allows you to set the maximum value the user can select
On running the code the result should be as below
That's it!
We hope you will enjoy using Bunifu Slider control and that it will help you create better user experience for your users.
Should you have feedback or suggestions please send us via chat on the bottom right corner of the screen.