Changing the row height of a DataGridView May 4, 2023 by Tarik You need to set the Height property of the RowTemplate: var dgv = new DataGridView(); dgv.RowTemplate.Height = 30;