Trying to set RowHeight like this(in code):
dgvTruckAvail.RowTemplate.Height = 48;
Doesnt\' work. I also tried to set Height of every colum
Setting the Height property of each Row does work.
Height
foreach (DataGridViewRow row in dataGridView1.Rows) { row.Height = 80; }