c#的datagridview如何设定行高
时间: 2023-07-27 20:26:33 浏览: 86
c# datagridview主要方法
你可以使用`DataGridView`的`RowTemplate`属性来设置所有行的默认高度,也可以使用`DefaultCellStyle`属性来为单个行设置高度。
设置所有行的默认高度:
```c#
dataGridView1.RowTemplate.Height = 50; //设置默认行高为50像素
```
为单个行设置高度:
```c#
dataGridView1.Rows[0].Height = 50; //设置第一行的行高为50像素
```
阅读全文