I have a DataGridView with two column member names and a member image.
I want to increase the height of each row in a DataGridView .
I set the value of the property, but the height does not change; any other property also noted by me is indicated below.
I tried this to change, but did not change the row height of the DataGridView ...
var dgv = new DataGridView(); dgv.RowTemplate.Height = 30;
can anyone help with this?
source share