嗨,我有一个DataGridView未绑定到数据库的。我仅使用它来插入数据,SQL Server但在插入之前我需要分别第一、第二和第三列的总行数,其中包含 true 和 false。我想分别计算那些具有真实值的列行。我希望有一个人可以帮助我。
1 回答
月关宝盒
TA贡献1772条经验 获得超5个赞
您没有发布任何代码,因此无法知道您的网格视图列是如何配置的。您需要做的是循环遍历行并测试列的值。例如,如果您的DataGridView变量名为gridView,您可以执行以下操作:
int col1Count = 0;
int col2Count = 0;
int col3Count = 0;
bool cellValue;
foreach ( DataGridViewRow row in gridView.Rows )
{
cellValue = (bool) row.Cells["col1"].Value;
if ( cellValue )
{
++col1Count;
}
cellValue = (bool) row.Cells["col2"].Value;
if ( cellValue )
{
++col2Count;
}
cellValue = (bool) row.Cells["col3"].Value;
if ( cellValue )
{
++col3Count;
}
}
- 1 回答
- 0 关注
- 70 浏览
添加回答
举报
0/150
提交
取消