How to increase the scrollbar width for DataGridView?

Is there a way to increase the width of the scrollbars for the DataGridView?

0


a source to share


2 answers


The only way to do this is to implement your own control and replace it with DataGridView

. I found this on CodeProject (its a VB, but still a good example):

Basic custom scrolling class on VectorX



There is something else on the MSDN forums.

custom scrollbar for datagridview

+3


a source


Both scroll ranges are in the collection of the DataGridView control. You can just get them from there and try to change it.



+2


a source







All Articles