【问题标题】:How to set a default value to checked for a C1flexgrid checkbox column?如何设置默认值以检查 C1flexgrid 复选框列? 【发布时间】:2017-11-07 18:39:46 【问题描述】: 我有 WF,C1flexgrid 中的一列有布尔数据类型。 默认情况下,加载该表单时所有复选框都未选中,但我想知道如何设置值以选中该列的所有行? 【问题讨论】: 标签: c# c1flexgrid 【解决方案1】: 好的,这就是解决方案: for (int rowIndex = 1; rowIndex < grid.Rows.Count; rowIndex++) { grid[rowIndex, 1] = 1; } [ ] 括号中的第一个是列索引。 【讨论】: