如何在C#.net?
中在运行时调整datagrid中的行高答案 0 :(得分:1)
遍历行并更改它,例如:
foreach (DataGridViewRow row in dataGridView1.Rows)
{
row.Height -= 2;
}
答案 1 :(得分:0)
除了循环之外,此事件可用于在WPF网格中设置行高。
private void dataGrid1_LoadingRow(object sender,DataGridRowEventArgs e)
{
e.Row.Height = 100.00;
}