从datagridviewcomboboxcollumn中的1个特定单元格中删除datagridviewcomboboxcell

时间:2011-07-25 06:24:33

标签: c# forms datagridview

我有一个datagridview,如图1所示,底部的行确实有2个comboboxcell,因为我将该collumn设置为该类型。但我想将该组合单元更改为文本框单元,但该列中的其他单元需要保持组合单元。 在klant和project下面的行中,除了最后一行之外还有值。这一行需要显示行的总数

图像1

我希望有人可以帮助我,我在google上找不到任何东西,在这里也可以在stackoverflow上找到。

1 个答案:

答案 0 :(得分:1)

您可以设置datagridview的单个单元格:

DataGridViewCell newCell = new DataGridViewTextBoxCell();
// Set more properties here.
dataGridView1[row, column] = newCell;