博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Winform中DataGridView的DataGridViewCheckBoxColumn使用方法(选中与选不中)
阅读量:5918 次
发布时间:2019-06-19

本文共 1926 字,大约阅读时间需要 6 分钟。

下面介绍Winform中DataGridView的DataGridViewCheckBoxColumn使用方法:

 

DataGridViewCheckBoxColumn CheckBox是否选中

  在判断DataGridView中CheckBox选中列的时候,用DataGridViewRow.Cells[0].FormattedValue.ToString()=="True"语句时存在问题,当我们直接点击CheckBox时,结果显示未选中,但是如果我们在点击其他单元格时,结果显示选中。而用DataGridViewRow.Cells[0].EditedFormattedValue.ToString()=="True"语句时不管怎么样是选中的状态。

为什么会有这种结果?

  原因:就是FormattedValue是操作提交后的结果,而EditedFormattedValue是当前的结果,不管结果是否已经提交。

     所以用DataGridViewRow.Cells[0].EditedFormattedValue.ToString()=="True"判断选中比较合适 

View Code
if (dgvDownloadList.Rows.Count > 0) {    for (int i = 0; i < dgvDownloadList.Rows.Count; i++)    {        string _selectValue = dgvDownloadList.Rows[i].Cells["Column1"].EditedFormattedValue.ToString();        if (_selectValue == "True")           //如果CheckBox已选中,则在此处继续编写代码     } }

DataGridViewCheckBoxColumn 设置CheckBox默认选中

   ((DataGridViewCheckBoxCell)dgvDownloadList.Rows[i].Cells["Column1"]).Value = true;

 

DataGridViewCheckBoxColumn 第一时间获取CheckBox的选中状态

  当点击或者取消datagridview的checkbox列时,比较难获得其状态是选中还是未选中,进而不好进行其它操作,下面就列出它的解决办法: 

  CommitEdit :将当前单元格中的更改提交到数据缓存,但不结束编辑模式  

dgvDownloadList.CurrentCellDirtyStateChanged += new EventHandler(dgvDownloadList_CurrentCellDirtyStateChanged); dgvDownloadList.CellValueChanged += new DataGridViewCellEventHandler(dgvDownloadList_CellValueChanged);   void dgvDownloadList_CurrentCellDirtyStateChanged(object sender, EventArgs e) {     if (dgvDownloadList.IsCurrentCellDirty)     {         dgvDownloadList.CommitEdit(DataGridViewDataErrorContexts.Commit);     }             }   void dgvDownloadList_CellValueChanged(object sender, DataGridViewCellEventArgs e) {     if (dgvDownloadList.Rows.Count > 0)     {         for (int i = 0; i < dgvDownloadList.Rows.Count; i++)         {             string _selectValue = dgvDownloadList.Rows[i].Cells["Column1"].EditedFormattedValue.ToString();             if (_selectValue == "True")                 //如果CheckBox已选中,则在此处继续编写代码         }      } }

 

转载地址:http://wmfvx.baihongyu.com/

你可能感兴趣的文章
Change locale of Netbeans
查看>>
结合项目实例 回顾传统设计模式(四)工厂模式(简单工厂、普通工厂、抽象工厂)...
查看>>
java基础(三章)
查看>>
Eclipse SVN 冲突的 介绍 及 四种解决方式
查看>>
Python学习笔记__19.1章 HTTP协议
查看>>
df命令、du命令、磁盘分区
查看>>
部署LNMP 、 Nginx+FastCGI 、 Nginx高级技术
查看>>
IT经理在未来几年中的生存指南
查看>>
第一次写博客---》记录贴
查看>>
家庭服务器数据中心能实现的应用其实不止这些
查看>>
Spring Cloud综合实战 - 基于TCC补偿模式的分布式事务
查看>>
如何在gitlab 数据备份
查看>>
CDH HDFS文件系统垃圾间隔设置
查看>>
java抽象数据类型
查看>>
CentOS7_LAMP-https-discuz搭建,WordPress搭建及phpMyadmin搭建_2015091902
查看>>
postgres 定期备份shell
查看>>
写在C#.NET通用权限管理系统组件源码销售额突破(23000元/月)大关,客户数量超过156人...
查看>>
大哥你都有房子有车子还拿着双份工资收入,不能总想让兄弟免费来杭州帮忙啊,开不来这个口啊...
查看>>
响应式网页设计:web产品RWD概念
查看>>
RHCE_LAB(2)SSH远程登录自动验证(不输入用户登录密码)的实现
查看>>