0

how to write on the columns row header in datagridview I mean the header of the columns row headers Like this

enter image description here

and this is my code

dataGridView1.Rows[-1].HeaderCell.Value = "Days";
ahmed mohamady
  • 293
  • 1
  • 7
  • 30

1 Answers1

1
dataGridView1.TopLeftHeaderCell.Value = "Days";
Donal
  • 31,121
  • 10
  • 63
  • 72