博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# Winform中DataGridView的DataGridViewCheckBoxColumn CheckBox选中判断
阅读量:5277 次
发布时间:2019-06-14

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

1、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"判断选中比较合适

DataGridViewCheckBoxColumn 设置CheckBox默认选中

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

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

 

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

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

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

1 dgvDownloadList.CurrentCellDirtyStateChanged += new EventHandler(dgvDownloadList_CurrentCellDirtyStateChanged); 2  dgvDownloadList.CellValueChanged += new DataGridViewCellEventHandler(dgvDownloadList_CellValueChanged); 3    4 void dgvDownloadList_CurrentCellDirtyStateChanged(object sender, EventArgs e) 5 { 6      if (dgvDownloadList.IsCurrentCellDirty) 7      { 8          dgvDownloadList.CommitEdit(DataGridViewDataErrorContexts.Commit); 9      }            10 }11   12 void dgvDownloadList_CellValueChanged(object sender, DataGridViewCellEventArgs e)13 {14      if (dgvDownloadList.Rows.Count > 0)15      {16          for (int i = 0; i < dgvDownloadList.Rows.Count; i++)17          {18              string _selectValue = dgvDownloadList.Rows[i].Cells["Column1"].EditedFormattedValue.ToString();19              if (_selectValue == "True")20                  //如果CheckBox已选中,则在此处继续编写代码21          }22       }23 }

 转载:http://blog.csdn.net/yhj821129/article/details/6290899#

 

  

转载于:https://www.cnblogs.com/SnailWalk/p/4727988.html

你可能感兴趣的文章
使用xrdp或Xmanager 远程连接 CentOS6
查看>>
Linux误删恢复
查看>>
Unity调用Windows窗口句柄,选择文件和目录
查看>>
HashMap循环遍历方式
查看>>
React Native 入门 调试项目
查看>>
C# 通过 Quartz .NET 实现 schedule job 的处理
查看>>
关于java之socket输入流输出流可否放在不同的线程里进行处理
查看>>
目前为止用过的最好的Json互转工具类ConvertJson
查看>>
Day13
查看>>
tensorflow saver简介+Demo with linear-model
查看>>
Luogu_4103 [HEOI2014]大工程
查看>>
Oracle——SQL基础
查看>>
项目置顶随笔
查看>>
Redis的安装与使用
查看>>
P1970 花匠
查看>>
java语言与java技术
查看>>
NOIP2016提高A组五校联考2总结
查看>>
iOS 项目的编译速度提高
查看>>
table中checkbox选择多行
查看>>
Magento开发文档(三):Magento控制器
查看>>