How i can change the height of header in DataGridView, i tried this property but it didnt work :
:confused:Code:this.dataGridView1.EnableHeadersVisualStyles=false;
this.dataGridView1.ColumnHeadersHeight=60;
Printable View
How i can change the height of header in DataGridView, i tried this property but it didnt work :
:confused:Code:this.dataGridView1.EnableHeadersVisualStyles=false;
this.dataGridView1.ColumnHeadersHeight=60;
You may need to set the ColumnHeaderHeightSizeMode to DisableResizing for it to work...
Thanks, it works fine :wave: