gpt4 book ai didi

c# - 以编程方式循环遍历 DatagridView 并选中复选框

转载 作者:可可西里 更新时间:2023-11-01 13:17:02 27 4
gpt4 key购买 nike

我有一个数据表绑定(bind)的 DataGridView 我有相同的复选框。

我想在 datagridview 中导航或循环并选中这些复选框,下面是我使用的语法。

foreach(DataGridViewRow dr in dgvColumns.Rows)
{
DataGridViewCheckBoxCell checkCell =
(DataGridViewCheckBoxCell)dr.Cells["CheckBoxes"];
checkCell.Value=1;
//Also tried checkCell.Selected=true;
//Nothing seems to have worked.!
}

最佳答案

以下对我有用,它完美地选中了复选框:)

foreach (DataGridViewRow row in dgvDataGridView.Rows)
{
((DataGridViewCheckBoxCell)row.Cells[0]).Value = true;
}

关于c# - 以编程方式循环遍历 DatagridView 并选中复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/681046/

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