It’s possible to perform autoscroll when I add value to a cell below last visible row on form?
I cannot find any autoscroll properties in DataGridView. Is the only possible way to do this to find index of the last visible cell and change FirstDisplayedScrollingRowIndex?
It’s possible to perform autoscroll when I add value to a cell below last
Share
You can use the
FirstDisplayedCellproperty to make that cell displayed.Since you know which cell you added the value to, you can do it like this: