gpt4 book ai didi

c# - 在datagridview c#中使一个单元格可编辑

转载 作者:太空狗 更新时间:2023-10-30 01:18:31 25 4
gpt4 key购买 nike

我有一个数据 GridView ,其属性为 readonly = true;但是我想将一些单元格设置为可编辑,我尝试使用下一个代码来做到这一点:

this.dgvNoCargadas.Rows[index].Cells[columns].ReadOnly = false;

但是我不能修改网格,有人知道吗?

最佳答案

首先删除dgv readonly true然后

  foreach (DataGridViewRow row in DataGridView1.Rows)
{
if (condition for true)
{
row.Cells[2].ReadOnly = true;
}
else (condition for false)
{
row.Cells[2].ReadOnly = false;
}
}

关于c# - 在datagridview c#中使一个单元格可编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26925983/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com