DataGridViewCheckBoxColumn

DataGridViewCheckBoxColumn

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

问题描述

如何在复选框中键入强制转换DataGridViewCheckboxColumn字段值.

How to type cast DataGridViewCheckboxColumn field value in check box.

CheckBox asa = (CheckBox)dataGridview1.Rows[1].Cells[3];



此字段已准备就绪datagridviewchechkboxcolumn
我遇到此代码问题.....

任何人都可以帮助我.

预先感谢.



this field is allready datagridviewchechkboxcolumn
i m facing problem this code.....

Any one help me.

Thanks in advance.

推荐答案


foreach (DataGridViewRow dataGridRow in dataGridView1.Rows)
{
   if (dataGridRow.Cells["YourCheckboxColumn"].Value != null &&    (bool)dataGridRow.Cells["YourCheckboxColumn"].Value)
  {
         // Checked
  }
  else if (dataGridRow.Cells["YourCheckboxColumn"].Value == null)
  {
         // Unchecked
  }
}




--Amit




--Amit


这篇关于如何在复选框中键入种姓gridview值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 03:17