111,092
社区成员




private void button1_Click(object sender, EventArgs e)
{
int rowindex = dataGridView1.CurrentCell.RowIndex;
if (rowindex < dataGridView1.Rows.Count)
{
dataGridView1.CurrentCell = dataGridView1.Rows[rowindex + 1].Cells[0];
}
}