Hi Sunny,
What you need to do is to disable the row header by following these steps:
- Get the properties of your
GridView
- Navigate to the
RowHeadersVisible
settings and set it to False
Or via code:
csharp
this.dataGridView1.RowHeadersVisible=false;
Hope this helps