You can always loop through all DataGridViewRows and set the Height property:
foreach (DataGridViewRow row in dataGridView1.Rows) {
if (heightShouldBeSet) {
row.Height = yourHeightSetting;
}
}
1
solved how to increase rows size in DataGridView