DataGirdView 添加行与列的方法

本文介绍了在.NET中操作DataGridView的两种方法:非数据源和连接数据源。对于非数据源,演示了如何手动创建并添加列和行,设置列头文字,以及插入数据。而对于连接数据源的方式,通过创建DataTable,添加列和行数据,然后将其绑定到DataGridView上展示。
摘要由CSDN通过智能技术生成

分为连接数据源和非数据源两种

非连接数据源

              dataGridView1.ColumnCount = 3;
            dataGridView1.Columns[0].HeaderText = "ID号";
            dataGridView1.Columns[1].HeaderText = "时间";
            dataGridView1.Columns[2].HeaderText = "心跳值";

           

         DataGridViewRow row = new DataGridViewRow();
           
            //row.Cells["ID号"].Value = "1";
;
            row.CreateCells(dataGridView1);
            row.Cells[0].Value = "1";
            row.Cells[1].Value = "1";

            row.Cells[2].Value = "60";

            dataGirdView1.Rows.Insert(0,row);
            dataGridView1.Rows.Add(row);

连接数据源

  DataTable dt = new DataTable();
            dt.Columns.Add("a");
            dt.Columns.Add("b");
            DataRow dr = dt.NewRow();
          
            dr["a"] = "1";
            dr["b"] = "2";
            dt.Rows.Add(dr);
            dr = dt.NewRow();

            dataGridView1.DataSource = dt;

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值