[C#] DataGridView指定目前所在的資料行
一段時間沒用都會忘記
稍微記錄一下
下面的方法是無效的
private void button1_Click(object sender, EventArgs e)
{
dataGridView1.Rows[9].Selected = true; //雖然第十筆反白了, 但CurrentRow依然不是它
dataGridView1.Rows[9].Cells[0].Selected = true; //同上
dataGridView1.CurrentRow = dataGridView1.Rows[9]; //這行會錯, 因為CurrentRow屬性唯讀
}
只有這方法才有效
private void button1_Click(object sender, EventArgs e)
{
dataGridView1.CurrentCell = dataGridView1.Rows[9].Cells[0];
}
by sam319