Datagridview - remove part before the first column

Solution 1:

Here is a solution for standard windows controls in C#.

To hide the row headers you can use the property RowHeadersVisible and set it to false.

To make the row headers smaller you can use the property RowHeadersWidth.

I hope this helps you.

Solution 2:

Set the RowHeadersVisible property to False and it will work like a charm