C # DataGridView controls have, by default, an empty last row marked with *. How can I hide this?
The line you are talking about is the line "new line". This can be hidden by setting the AllowUserToAddRows property to false.
Alternatively, you can clear the Enable Add checkbox in the DataGridView Tasks dialog box.
Disable the AllowUserToAddRows property. This property indicates whether the user is shown the ability to add lines (which you call the default line *).
I interact with Reniuz, if AllowUserToAddRows is enabled, the default row will be automatically generated and added to the row collection.