• datagridview的checkbox列,当修改checkbox状态时实时获得其状态值


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

    主要用到了datagridview的CurrentCellDirtyStateChanged和CellValueChanged两个事件

    CurrentCellDirtyStateChanged事件是提交对checkbox状态的修改

    CellValueChanged事件是当状态提交后,也就是单元格值改变后做一些其它的操作,这里是将checkbox列的true或false状态作为tooptiptext属性设置到同一行的button列

    CurrentCellDirtyStateChanged事件代码 :

    Code

    CellValueChanged事件代码 :

    Code



  • 相关阅读:
    并查集分析+总结
    poj 3083 Children of the Candy Corn(bfs+dfs 数组模拟方向)
    poj 1094 Sorting It All Out (拓扑排序)
    poj 2632 Crashing Robots(模拟)
    poj 1068 Parencodings (模拟)
    poj 1273 Drainage Ditches ( 最大流Edmonds_karp算法)
    poj 3278 Catch That Cow (BFS)
    Codeforces Round #109 (Div. 2) 总结
    poj 2299 UltraQuickSort(归并排序)
    poj 1035 Spell checker(字符串)
  • 原文地址:https://www.cnblogs.com/gossip/p/1346047.html
Copyright © 2020-2023  润新知