Reputation: 5627
Is there a way I can remove the top left cell in a DataGrid ?
Upvotes: 1
Views: 1477
Reputation: 1502
If you want to hide it, just set RowHeadersVisible property to false.
myDataGridTableStyle.RowHeadersVisible = false;
If you want to change the behaviour:
Hope it helps
MSDN properties for RowHeadersVisible Property
Upvotes: 4