How to increase rows size in DataGridView using C#? I can't find this property .
Thanks in advance.
You can always loop through all DataGridViewRows and set the Height property:
DataGridViewRow
Height
foreach (DataGridViewRow row in dataGridView1.Rows) { if (heightShouldBeSet) { row.Height = yourHeightSetting; } }
1.4m articles
1.4m replys
5 comments
57.0k users