标签: c# oracle datagridview
我想获得行单元格值:
DataGridViewRow row = this.dataGridView1.Rows[e.RowIndex];
对我来说,这段代码有效:
vardas.Text = row.Cells[1].Value.ToString();
但不是这样:
vardas.Text = row.Cells["VARDAS"].Value.ToString();
程序停止工作,冻结窗口,没有响应。
为什么我的代码行按索引名称获取单元格值,不起作用?