DataGridView CurrentRow Cell Value = null但不是

时间:2012-08-15 18:32:08

标签: c# datagridview

我对此代码有疑问:

cell_0_value= dgv.CurrentRow.Cells[0].Value.ToString();

它在dgv.CurrentRow.Cells [0] .Value中显示为null但是我的表有6列并且它已经有值。

我如何克服它?

1 个答案:

答案 0 :(得分:0)

由于您使用CurrentRow,因此必须先选择一个单元格。否则,CurrentRow将返回null。

http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.currentrow(v=vs.90).aspx