本文介绍了如何计算c#中datagridview的复选框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发小项目,我想计算在datagridview中检查的复选框,并将其存储到文本框中。

i使用下面的代码,但每次只显示零。

i am developing small project and i want to count the checkboxes checked in the datagridview, and store it into textbox.
i used this below code but every time it showing only zero.

int count = 0;
            for (i = 0; i <= dgvEX.RowCount - 1; i++)
            {
                if (ChkedRow.Count == dgvEX.RowCount)
                {
                    count++;
                }
            }
         txtSN.Text = count.ToString();





任何人都可以提供帮助我解决这个问题????



can anybody help me to solve this problem????

推荐答案


这篇关于如何计算c#中datagridview的复选框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 09:55