0

Winform C#:

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

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

谢谢。

4

1 回答 1

0
foreach(DataGridViewRow Row in myGrid.Rows)
{
    Row.Cells[2].Value = DateTime.Now; // Sets the value of the third column
}

你的意思是这样的吗?这将遍历数据网格中的所有行,并将第三列的值设置为当前日期/时间。

于 2013-08-24T18:14:34.813 回答