您现在的位置: 365建站网 > 365文章 > 如何获取datagridview中checkbox选中的多行数据

如何获取datagridview中checkbox选中的多行数据

文章来源:365jz.com     点击数:1208    更新时间:2011-04-08 23:26   参与评论

开发(winform)时碰到这个问题 C# 怎样判断 datagridview 中的checkbox列是否被选中,错误原因都C#对类型判断相当严格,为了避免大家以后多走弯路,把我的思路和大家说一下,希望对大家有帮助。

     for (int i = 0; i < dataGridView1.Rows.Count; i++)
            {
                if ((bool)dataGridView1.Rows[i].Cells[0].EditedFormattedValue==true)
                {
                    //TODO
                }
               
            }

if ($ != jQuery) { $ = jQuery.noConflict(); } var isLogined = true; var cb_blogId = 67609; var cb_entryId = 1768554; var cb_blogApp = "tianguook"; var cb_blogUserGuid = "26710bb1-fd2c-df11-ba8f-001cf0cd104b"; var cb_entryCreatedDate = '2010/6/30 18:45:00';

==========================================

private void PrintInFo() {
   try
     {
        int count = 0;
        //用于保存选中的checkbox数量
        //DG_List为datagridview控件
        for (int i = 0; i < DG_List.RowCount; i++)
        {
            if (DG_List.Rows[i].Cells  [0].EditedFormattedValue.ToString() == "True")
            //这里判断复选框是否选中
            {
                count++;
            }
         }
         if (count == 0)
         {
              MessageBox.Show("请至少选择一条数据!", "提示");
              return;
         }
         else
         {
              if (MessageBox.Show(this, "您要更新数据么?", "提示", MessageBoxButtons.YesNo,    MessageBoxIcon.Information).ToString() == "Yes")
              {
                   for (int i = 0; i < count; i++)
                   {
                       ps.Pexcute(" update cf_prj_certi set FIsPrint='"+number+"' where fid='" +  DG_List.Rows[i].Cells["fnn"].Value.ToString() + "'"); //执行SQL
                   }
               } else
                {
                    return;
                }
          }
     } catch (Exception ex)
        {
            MessageBox.Show(ex.ToString());
        } this.ShowInfo(); //重新绑定datagridview
}

 

=========================================

点击dataGridView1事件中的CellMouseClick 事件

private void dataGridView1_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)
{
    if(e.ColumnIndex==6)
    {
        dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value = true;
    }
}

if ($ != jQuery) { $ = jQuery.noConflict(); } var isLogined = true; var cb_blogId = 67609; var cb_entryId = 1768554; var cb_blogApp = "tianguook"; var cb_blogUserGuid = "26710bb1-fd2c-df11-ba8f-001cf0cd104b"; var cb_entryCreatedDate = '2010/6/30 18:45:00';

如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛

发表评论 (1208人查看0条评论)
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
昵称:
最新评论
------分隔线----------------------------

快速入口

· 365软件
· 杰创官网
· 建站工具
· 网站大全

其它栏目

· 建站教程
· 365学习

业务咨询

· 技术支持
· 服务时间:9:00-18:00
365建站网二维码

Powered by 365建站网 RSS地图 HTML地图

copyright © 2013-2024 版权所有 鄂ICP备17013400号