如何在C#.net中在运行时调整数据网格中的行高?

时间:2010-04-28 09:46:54

标签: c# datagrid

如何在C#.net?

中在运行时调整datagrid中的行高

2 个答案:

答案 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;
    }