Horizontal Scrollbar for ListBox

  • Thread starter Thread starter Kenneth
  • Start date Start date
I find a solution for that,

private void hScrollBar1_ValueChanged_1(object sender, System.EventArgs e)
{
this.listBox1.Left = -this.hScrollBar1.Value;
}
 
Back
Top