1

Is there a way I can remove the top left cell in a DataGrid ?

enter image description here

Sherlock
  • 5,557
  • 6
  • 50
  • 78

1 Answers1

4

If you want to hide it, just set RowHeadersVisible property to false.

myDataGridTableStyle.RowHeadersVisible = false;

If you want to change the behaviour:

Link

Hope it helps

MSDN properties for RowHeadersVisible Property

Community
  • 1
  • 1
AAlferez
  • 1,480
  • 1
  • 22
  • 48