I am using a Datagridview (unbounded mode) and I have selected "enable adding" in the designer.
when the form loads, the grid is not populated (drop down to select a supplier and button to view aliases) and there is a single row displayed with the * in the tab.
However, when I populate the grid, I no longer have this insert row for adding to the collection.
Here's basically what I am doing:
List<SupplierAlias> aliases = //some db lookup.
aliasGrid.AutoGenerateColumns = false;
aliasGrid.DataSource = aliases;
The columns are defined as unbound columns in the designer.
Previously, I was using clearing the aliasGrid.DataBindings but I took that out and it still removes the insert row.