winform中如何获取DataGrid中当前行的内容?(谢谢)
请问winform中如何获取DataGrid中选定当前行的内容,放到textbox中啊?谢谢指教! --------------------编程问答-------------------- string c = dataGrid1[dataGrid1.CurrentRowIndex,0].ToString(); --------------------编程问答-------------------- 我的意思是说,如果获取当前行的第一个字段,或第二个字段。。。的内容到textbox中 --------------------编程问答-------------------- 利用dataGrid1[RowIndex,ColIndex].ToString();
可以得到指定行,列的数据,RowIndex:行号,ColIndex:列号,从0起。
利用dataGrid1.CurrentRowIndex可以得到当前行的行号。 --------------------编程问答-------------------- 用Cell可以 --------------------编程问答-------------------- string _ID = DataGridView1.CurrentRow.Cells["ID"].Value.ToString();
或string _ID = DataGridView1.CurrentRow.Cells[colindex].Value.ToString();colindex为列号
DataGridView是这样用的,DataGrid应该也差不多
补充:.NET技术 , C#