1

Is that possible expand(make wider) scrollbar in DataGridView?

Is there a method that is responsible for that?

enter image description here

starko
  • 1,150
  • 11
  • 26
  • Possibly a duplicate of http://stackoverflow.com/questions/4593915/change-width-of-scrollbars – Ben Jan 27 '17 at 08:27

1 Answers1

1

If you are using DataGridView within Windows Forms then there is a property named ScrollBars, you can have options there, choose what suits your requirement.

If you are using ASP.NET put your DataGridView within a div i.e.

<div style="width: 100%; height: 400px; overflow: scroll">your GridView</div>
M. Adeel Khalid
  • 1,786
  • 2
  • 21
  • 24