在单击DataGirdView的内容事件里面写代码
如下:
textbox1.text = this.dataGridView1.CurrentRow.Cells[索引列].Value.ToString();
不成功找我。
索引列的值要随行的变化而变化啊~要把textbox.text=this.dataGridView1.CurrentRow.Cells[索引列].Value.ToString(); 当BindingSource.Count改变时也要改变CurrentRow的值~你这里只说了列的值会变可是当选不同行的时候行的值也要变啊
string str=((TextBox)this.GridView1.Rows[e.RowIndex].FindControl("txtstuAge")).Text;
txtstuAge是你GridView1里模板列里编辑项textbox的ID
textBox.text=str;
找dataGridView选中的项啊Selected吧