关于我的使用与的BindingList DataGridView的,我是禁用编辑当前行,但允许添加新行。 我的问题是,当我不允许修改,这似乎是阻止人们加入一个新的行项目,因为当你似乎进入表为这个新行的单元格不会允许编辑???
知道如何解决这个问题? 下面我的代码段:
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;
谢谢