如何使用C#增加DataGridView中的行大小?我找不到这个属性。
提前致谢。
答案 0 :(得分:1)
您始终可以遍历所有DataGridViewRow
并设置Height
属性:
foreach (DataGridViewRow row in dataGridView1.Rows) {
if (heightShouldBeSet) {
row.Height = yourHeightSetting;
}
}
答案 1 :(得分:0)
您需要添加新行。
int n = dataGridView1.Rows.Add();
dataGridView1.Rows[n].Cells[0].Value = title;
dataGridView1.Rows[n].Cells[1].Value = dateTimeNow;
答案 2 :(得分:0)
如果要增加行高,还可以将空行连接到单元格值。