当前位置: 编程技术>.net/c#/asp.net
实现DataGridView控件中CheckBox列的使用实例
来源: 互联网 发布时间:2014-08-25
本文导语: 代码如下:/// /// 实现DataGridView控件中CheckBox列的使用 /// /// /// private void dgvTradList_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (e.ColumnIndex ...
代码如下:
///
/// 实现DataGridView控件中CheckBox列的使用
///
///
///
private void dgvTradList_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == 0 && e.RowIndex != -1)
{
if ((bool)dgvTradList.Rows[e.RowIndex].Cells[0].EditedFormattedValue == true)
{
dgvTradList.Rows[e.RowIndex].Cells[0].Value = false;
}
else
{
dgvTradList.Rows[e.RowIndex].Cells[0].Value = true;
}
}