首页 > 学院 > 开发设计 > 正文

datagridview checkbox控件

2019-11-17 03:55:53
字体:
来源:转载
供稿:网友
在Winform中,DataGridView中使用Checkbox控件时

//单击单元格事件


PRivate void dgvTables_CellClick(object sender, DataGridViewCellEventArgs e)

        {

            if (e.ColumnIndex == 0)

            {

                DataGridViewCheckBoxCell dgvCheck = (DataGridViewCheckBoxCell)dgvTables.Rows[e.RowIndex].Cells[0];

                if (dgvCheck.Selected)

                {

                    dgvCheck.Value = !((bool)dgvCheck.FormattedValue);                    

                }

            }

        }



本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/netgyc/archive/2009/12/28/5089318.aspx
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表