As title. Followed as my code and screen shot as attachment.
public
partial
class
Form3 : Form
{
public
Form3()
{
this
.InitializeComponent();
this
.label1.Text =
this
.radHScrollBar1.Minimum.ToString();
this
.label2.Text =
this
.radHScrollBar1.Maximum.ToString();
}
private
void
button1_Click(
object
sender, System.EventArgs e)
{
this
.textBox1.Text =
this
.radHScrollBar1.Value.ToString();
}
}