Easily add modern looking track bar control to your design. Yo can do this during design time or at run time.
Simply locate Bunifu TrackBar control in your toolbox and drag it on to your form. You can then customize using custom properties as it will be elaborated later in this article.
We will use Form load event handler as shown below:
private void Form1_Load(object sender, EventArgs e){var trackBar = new Bunifu.Framework.UI.BunifuTrackBar();this.Controls.Add(trackBar);}
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.LoadDim trackBar As New Bunifu.Framework.UI.BunifuTrackBarControls.Add(trackBar)End Sub​
This property allows you to define the background color of the track bar
This property allow you to define the roundness the corners of the track bar
This property sets or gets the value selected by the user
This property sets the maximum value the user can select
This property allows you to define the fill color of the indicator
This property allows you to define the radius of the internal slider
That's it!
We hope you will enjoy Bunifu Trackbar 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.