Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在数据网格中插入行所以我使用这个代码
dataGridView1.Rows.Add();
但是当控件是数据绑定时,我得到了这个错误行不能以编程方式添加到 datagridview 中。请帮助能够使用正确的代码以编程方式添加行
TreDubZedd 的回答
将您的 DatagridView 绑定到一个BindingList<YourObject>,其中YourObject可以是一个简单的类,其属性反映您的数据库模式。最初BindingList从数据库中填充,DGV 将自动将YourObject实例添加到列表中。当您准备好提交更改时,请从BindingList.
BindingList<YourObject>
YourObject
BindingList