Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 WF,C1flexgrid 中的一列具有布尔数据类型。默认情况下,在加载该表单时所有复选框都未选中,但我想知道如何设置值以检查该列的所有行?
好的,这是解决方案:
for (int rowIndex = 1; rowIndex < grid.Rows.Count; rowIndex++) { grid[rowIndex, 1] = 1; }
[ ] 括号中的第一个是列索引。