How to scroll DataGridView in pixel increments
问题 My original approach was to enclose my DataGridView inside a panel, set its height outside the boundary of the panel and then change control panel's scroll bar position. However, I just found out that the number of rows inside my DataGridView would reach 2000, which forces me to size the DataGridView to at least: 65px (row height) x 2,000 = 130,000px. The maximum allowed size for a DataGridView control on my 64bit machine is 65,535. Anyone can think of a way around this issue? 回答1: Hmm, no,