怎样得到Grid中某行某列的值

2024-12-15 08:00:11
推荐回答(1个)
回答1:

某行某列的值: 获得行索引 int i = this.datagrid.CurrentRowIndex; 用索引获得某列值 string str = this.datagrid[i,3].ToString(); 或直接用 Gridview.Rows[行].cell[列].Text