用按钮实现datagridveiw中的上下箭头移动选择行功能
两个按钮
“上一条” 实现选择行上移
“下一条” 实现选择行下移
不需要交换数据
就像 delphi 中的数据导航条
------解决方案--------------------
下
dataGridView1.Rows[dataGridView1.CurrentRow.Index + 1].Selected = true;
上
dataGridView1.Rows[dataGridView1.CurrentRow.Index - 1].Selected = true;
注意自己判断一下是否到顶到底,以免访问越界