I want gridview scrollbar to set at last row at gridview. For that purpose, i've used below solution.
dataGridView.FirstDisplayedScrollingRowIndex = dataGridView.SelectedRows[0].Index;
But this is not working. When i tried to debug i found that, FirstDisplayedScrollingRowIndex
value gets reset in dataGridViewActivity_RowStateChanged
event.