如何为C#中的某些行禁用DataGridView按钮列

时间:2018-09-16 23:27:22

标签: c# winforms

我想对某些行禁用DataGridViewButtonColumn

我正在使用以下代码添加rows

int n = dgv.Rows.Add();
dgv.ClearSelection();
dgv.Rows[n].Cells[0].Value = //I want to Do Something here to disable the button Column
dgv.Rows[n].Cells[1].Value = "Deal 1";
dgv.Rows[n].Cells[2].Value = "";
dgv.Rows[n].Cells[3].Value = 1;
dgv.Rows[n].Cells[4].Value = Deal_Price.Text;
dgv.Rows[n].Cells[5].Value = "";

看到下面的图片,我想在某些行上禁用此按钮,或者在可能的情况下将其更改为textboxcolumn

enter image description here

我尝试了这段代码,但是它不起作用:

dgv.Rows[n].Cells[0].ReadOnly = true;

注意:重复的答案对我没有帮助,我已经尝试过ReadOnly属性。

0 个答案:

没有答案