private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
string str0 = this.dataGridView1.CurrentRow.Cells[0].Value.ToString();//0为dataGridView1的索引值
string str1 = this.dataGridView1.CurrentRow.Cells[1].Value.ToString();//1为dataGridView1的索引值
this.txtbox1.Text = str0;
this.txtbox2.Text = str1;
}
按你的要求改改就可以了。
谢谢!虽然和我想要的还是有点差别,但还是非常感谢您的回复!……