2

Is it possible to scroll per-pixel in a datagridview object in Windows Form? If yes, which property have I to change?

ROMANIA_engineer
  • 54,432
  • 29
  • 203
  • 199
  • What do you mean about "per-pixel"? If you want to go to next row, you can override the scroll events for showing selected rows http://stackoverflow.com/questions/8437916/how-do-i-make-the-datagridview-show-the-selected-row – tdat00 Mar 16 '16 at 08:58

1 Answers1

1

There are no such options in standard DataGridView out-of-the -box, so you can only take a look at some third-party solutions...

However, if your DataGridView contains a few rows(less than 2000), you can use an approach with enclosing the DataGridView into a scrollable container/panel, setting its height outside the boundary of the container and then using the container's scroll bars.

DmitryG
  • 17,677
  • 1
  • 30
  • 53