Winform C#:
我在dataGrid中有3列,例如ID,Name,Date。我必须在按钮单击事件的每一行上为Date列设置特定值。
我尝试了datagrid的Default属性,但是当新行添加到datagrid时它会设置默认值。
感谢。
答案 0 :(得分:0)
foreach(DataGridViewRow Row in myGrid.Rows)
{
Row.Cells[2].Value = DateTime.Now; // Sets the value of the third column
}
你是说这样的意思吗?这将迭代数据网格中的所有行,并将第三列的值设置为当前日期/时间。