我有一些数据,我想添加到数据网格视图。我想从C#program-me代码输入数据。我不想将它们发送到数据库。当我从代码中输入一些名称时,我应该出现在数据网格视图。我该怎么做?
答案 0 :(得分:1)
您可以向DataGridView添加包含数据的新行:
DataGridViewRow row = (DataGridViewRow)yourDataGridView.Rows[0].Clone();
row.Cells[0].Value = "XYZ";
row.Cells[1].Value = 50.2;
yourDataGridView.Rows.Add(row);
答案 1 :(得分:0)
您可以执行类似操作,以下代码会将值设置为第0行和第0列。如果要将值设置为不同的单元格,请调整行和单元格索引。
dataGridView1.Rows[0].Cells[0].Value = "some value";