How to delete DataGridView Row by pressing DeleteKey?
One possible cause for the delete functionality not working is that you need to have a row selected.
This means either having the SelectionMode
set to FullRowSelect
or means that you have previously clicked on the row headers which are to the left of the columns.