我是c#的新手。将数据插入我的数据库后,我有一个表单,允许我查看我的数据DataGridView
将显示所有数据。但是,该表不会显示正在插入数据库的新数据。
已经对datagridview.refresh()
进行了研究,但只对其进行了图形更新。
以下是我的代码:(不知道我是否在正确的轨道上)
private void button_refresh_Click(object sender, EventArgs e)
{
//DataGridView1.refresh();
//DataSet1.GetChanges();
//TableAdapter.Fill(DataSet1.table);
}
答案 0 :(得分:0)
如果您没有使用数据绑定,那么唯一的方法是删除所有行:
DataGridView1.Rows.Clear();
然后再次读取并添加行,就像你最初那样
答案 1 :(得分:0)
让我们假设d是DataSource
我有
d.Add(new string[] {"a", "b", "c"});
dataGridView1.DataSource = d;
现在我的DataGridView有 1 行
过了一会儿......d.Add(new string[] { "1", "2", "3" });
d.Add(new string[] { "4", "5", "6" });
d.Add(new string[] { "x", "y", "z" });
dataGridView1.DataSource = null;
dataGridView1.DataSource = d;
dataGridView1.Refresh();
现在我的DataGridView有4行。
答案 2 :(得分:0)
this.employeesTableAdapter.Fill(this.dataSet1.Employees);
Where: Employees your table