关于我将 DataGridView 与 BindingList 一起使用,我将禁用编辑当前行,但允许添加新行。我遇到的问题是,当我不允许编辑时,这似乎阻止了一个人添加新的行项目,因为当您将表格放入该新行的单元格时,它似乎不允许编辑???
知道如何解决这个问题吗?我的代码部分如下:
BindingSource bs = new BindingSource();
bList = new BindingList<Customer>();
bList.AllowNew = true;
bList.AllowEdit = false;
// Fill bList with Customers
bList.Add(new Customer("Ted"));
bList.Add(new Customer("Greg"));
bList.Add(new Customer("John"));
bs.DataSource = bList;
dataGridView1.DataSource = bs;
谢谢