You can always loop through all DataGridViewRow
s 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