I have a DataGridView as in another question and AllowUserToDeleteRows is set to true.
The docs say that IBindingList.AllowRemove should also be set to true. However, a List doesn't seem to have that interface, and it doesn't seem to need it. One can remove items from a List.
A similar question's answer suggests setting DataGridView.EditMode to EditOnKeystroke. But that doesn't help.
So - How can I get it to allow a user to Delete Rows?
