حرکت ScrollBar به وسیله ماوس
کنترل های روی فرم :
ScrollBar
panel
سپس در رویداد ValueChanged کنترل ScrollBar کد زیرو برای حرکت چپ به راست اسکرول بار تایپ کنید ، دقت کنید اسکرول بار حتما درون کنترل panel باشه
کد:
private void vScrollBar1_ValueChanged(object sender, EventArgs e)
{
this.panel1.Left = -this.vScrollBar1.Value;
this.Text = "x = " + this.panel1.Location.X + ", y = " + this.panel1.Location.Y;
}
خب حالا در همون رویداد اسکرول بار برای حرکت از بالا به پایین کد زیرو تایپ کنید
کد:
private void vScrollBar1_ValueChanged(object sender, EventArgs e)
{
this.panel1.Top = -this.vScrollBar1.Value;
this.Text = "x = " + this.panel1.Location.X + ", y = " + this.panel1.Location.Y;
}