gpt4 book ai didi

c# - 以编程方式取消选中datagridview中的复选框列

转载 作者:行者123 更新时间:2023-11-30 18:43:17 25 4
gpt4 key购买 nike

如何以编程方式取消选中数据 GridView 中 DataGridViewCheckboxColumn 中的所有行?

我可以使用复选框获得正确的值

(bool)row.Cells[CheckBoxColumn.Index].FormattedValue

但这只是一个 setter/getter 。

我试过使用设置单元格的值

(bool)row.Cells[CheckBoxColumn.Index].value = false

但这不会影响 FormattedValue。

我该如何解决这个问题?

最佳答案

你做某事。喜欢:

(row.Cells[CheckBoxColumn.Index] as DataGridViewCheckBoxCell).value = false;

您只是忘记转换为正确的类型,通用 DataGridViewCell 不知道其值类型。

关于c# - 以编程方式取消选中datagridview中的复选框列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4725384/

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