方法一:
this.dataGridView1.FirstDisplayedScrollingRowIndex = this.dataGridView1.Rows.Count - 1;
方法二:
dataGridView1.Focus(); SendKeys.Send("^{End}");