Winform C#:将默认值设置为数据网格中的特定列

本文关键字:网格 数据网 数据 默认值 设置 Winform | 更新日期: 2023-09-27 18:29:03

Winform C#:

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

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

谢谢。

Winform C#:将默认值设置为数据网格中的特定列

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

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