datagridview自定义列的数据绑定

时间:2022-10-29 16:22:54

最近都在做Winform的小东西,很有锻炼的感觉,时间飞快的,特爽。

不过,也碰到了些许问题,在使用dataGridView进行数据绑定的时候,总是把数据库中整个表显示在页面上,连HeaderText属性显示的都是数据库中英文的字段。

而自己只想实现显示数据库中自定义的字段,把一些字段不显示出来。这问题,也是小琢磨了一下~~~~实现如下:

1:在dataGridView设计界面添加需要显示的列数,并赋予相应的名称:

datagridview自定义列的数据绑定

2:编写后台代码,进行数据源的绑定,绑定的是datatable。然后把dataGridView的自动创建列的属性设置为false。

?
1
2
3
4
DataSet ds = userInfoBll.GetAllList();
//取消 dataGridView1 的自动创建列
this .dataGridView1.AutoGenerateColumns = false ;
this .dataGridView1.DataSource = ds.Tables[0];
3:将设计界面添加的列的DataPropertyName属性指向数据库中要显示的相应列,实现如下

?
1
2
3
4
//把自定义的列的DataPropertyName属性绑定到数据库中表的列
                this .dataGridView1.Columns[ "Column1" ].DataPropertyName = ds.Tables[0].Columns[0].ToString();
                this .dataGridView1.Columns[ "Column2" ].DataPropertyName = ds.Tables[0].Columns[1].ToString();
                this .dataGridView1.Columns[ "Column3" ].DataPropertyName = ds.Tables[0].Columns[3].ToString();
大功告成啦,显示页面即成功显示出绑定的列,也是自己需要显示数据库中的相应列