I too had this problem in VS2015 on a winform.
The winform has a table layout split into 4 rows, 1 column. Into the rows I place panels for placing other controls except the DataGrid row which is in the last row. The DataGrid is set with Dock to fill. The form also has a Status bar at the bottom, for future use.
What I found is that the status bar blocked the scrollbar as mentioned previously.
I added another row to the table layout but that would display a large blank space at the bottom of the form both at run time and design. Resizing the form did not resolve either. I tried setting the row height of the table layout but it did not work. I tried 1 pixel, 5 pixels etc. no change. In the end I gave up and removed the Status bar, wasn't using it for anything anyway.
Frozen
property set asTrue
. which should befalse
for all columns. Now ScrollBar is working absolutely fine for me. Cheers – Scorpion