首页 > 编程 > .NET > 正文

实现DataGridView控件中CheckBox列的使用实例

2024-07-10 13:22:59
字体:
来源:转载
供稿:网友

复制代码 代码如下:


/// <summary>
        /// 实现DataGridView控件中CheckBox列的使用
        /// </summary>
        /// <param></param>
        /// <param></param>
        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;
                }
            }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表