gpt4 book ai didi

c# - 在运行时转换 DataGridView 单元格类型

转载 作者:太空狗 更新时间:2023-10-29 23:10:38 26 4
gpt4 key购买 nike

我的 datagridview 有一个复选框列,它只对它显示的数据中的某些记录有效。对于复选框无效的记录,我希望不显示任何内容 - 例如空白文本框。

因此我需要在运行时将单元格类型从复选框单元格动态更改为文本框单元格。我不能简单地更改列数据类型,因为该列需要混合使用文本框和复选框单元格类型。

到目前为止,我有下面的代码。

 this.deviceList1.DeviceGrid[colIndex, rowIndex] = new KryptonDataGridViewTextBoxCell()
this.deviceList1.DeviceGrid[colIndex, rowIndex].ReadOnly = true;

如何生成 DataGridView 数据错误:

System.FormatException: Formatted value of the cell has a wrong type.

最佳答案

已排序。真的很简单。解决方案是确保为 Value 属性赋予适当的值。即需要将其设置为字符串值。

this.deviceList1.DeviceGrid[colIndex, rowIndex] =  new KryptonDataGridViewTextBoxCell()
this.deviceList1.DeviceGrid[colIndex, rowIndex].ReadOnly = true;
this.deviceList1.DeviceGrid[colIndex, rowIndex].Value = "";

关于c# - 在运行时转换 DataGridView 单元格类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6033851/

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