我有一个 Windows 窗体中的 datagridview,我必须显示 5 行数据。
我正在使用此代码...
private void DGV_ActivityDtls_DefaultValuesNeeded(object sender, DataGridViewRowEventArgs e)
{
e.Row.Cells[0].Value = "Activities";
e.Row.Cells[1].Value = " ";
e.Row.Cells[2].Value = "LT";
}
一行工作正常,但我还有 4 行。我是新手,有人可以帮帮我吗?
提前致谢。