如何在DataGridView中获取checkbox的值

如何在DataGridView中获取checkbox的值

本文介绍了如何在DataGridView中获取checkbox的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在DataGridView中,有一个列,它的类型是"DataGridViewCheckBoxColumn",如何获取此复选框的状态?



ArrayList aList = new ArrayList();


foreach( dgv_Leaguer_Info .Rows)
{
bool bChecked = ??? ;
if(bChecked)
{
aList.Add(row.Cells [0] .Value。 ToString());
}
}



TKS!

解决方案

In a DataGridView,There is a column,It's type is "DataGridViewCheckBoxColumn",How can I get the status of this checkbox?

 

ArrayList aList = new ArrayList();

foreach (DataGridViewRow row in dgv_Leaguer_Info.Rows)
            {
                bool bChecked = ???;
                if ( bChecked )
                {
                    aList.Add(row.Cells[0].Value.ToString());
                }
            }

 

TKS!

解决方案


这篇关于如何在DataGridView中获取checkbox的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 22:00