如何更改数据网格视图中单个单元格的高度?

How to change the height of an individual cell in a datagridview?

我想知道如何在不影响整行的情况下更改单元格的高度。我正在制作时间表表格,我需要根据事件所花费的时间更改单元格的高度。

我在 clr 项目中使用 C++ 制作这个

您必须改用 Style.BackColor

foreach (DataGridViewCell cell in dataGridView1.Rows[0].Cells)
     cell.Style.BackColor = Color.Red;

dataGridView1->Rows[0]->Cells[0]->Style->BackColor = Color::Red;

将第一行第一个单元格的背景颜色设置为红色。

将 dataGridView1 更改为您的 datagridview 的名称,并根据需要设置行值和列值。

您可能还必须添加:- 使用命名空间 System::Drawing;