I have a Windows Form Application with a DataGridView.
AutoGenerateColumns is false so I have added the columns manually
I left out the ID field from the added columns and added a DataGridViewButtonColumn column.
How do I associate the ID to the row without displaying it so that the Delete button deletes the row it is on?
dgv.Columns["ColumnName"].Visible = false;
– Forklift