Winform C#:将默认值设置为datagrid中的特定列

时间:2013-08-24 12:13:17

标签: c# winforms user-controls

Winform C#:

我在dataGrid中有3列,例如ID,Name,Date。我必须在按钮单击事件的每一行上为Date列设置特定值。

我尝试了datagrid的Default属性,但是当新行添加到datagrid时它会设置默认值。

感谢。

1 个答案:

答案 0 :(得分:0)

foreach(DataGridViewRow Row in myGrid.Rows)
{
    Row.Cells[2].Value = DateTime.Now; // Sets the value of the third column
}
你是说这样的意思吗?这将迭代数据网格中的所有行,并将第三列的值设置为当前日期/时间。