[Solved] how to increase rows size in DataGridView

[ad_1]

You can always loop through all DataGridViewRows and set the Height property:

foreach (DataGridViewRow row in dataGridView1.Rows) {
    if (heightShouldBeSet) {
        row.Height = yourHeightSetting;
    }
}

1

[ad_2]

solved how to increase rows size in DataGridView