如何动态获取DataGrid选中行的列的值

2024年11月30日 08:33
有1个网友回答
网友(1):

winform:
某行某列的值:
获得行索引
int i = this.datagrid.CurrentRowIndex;
用索引获得某列值
string str = this.datagrid[i,3].ToString();
webform:
string str =DataGrid1.SelectedItem.Cells[0].Text;