C#DataGridViewButtonCell禁用或删除按钮
时间: 2023-11-28 18:48:31 浏览: 161
c#Datagridview增加按钮.rar
要禁用或删除 `DataGridViewButtonCell` 中的按钮,可以使用以下方法之一:
1. 禁用按钮:
```csharp
// 假设你要禁用第一行第二列的按钮
dataGridView.Rows[0].Cells[1].ReadOnly = true;
```
2. 删除按钮:
```csharp
// 假设你要删除第一行第二列的按钮
dataGridView.Rows[0].Cells[1] = new DataGridViewTextBoxCell();
```
这将把 `DataGridViewButtonCell` 替换为 `DataGridViewTextBoxCell`,这样就没有按钮了。
阅读全文