最近都在做Winform的小东西,很有锻炼的感觉,时间飞快的,特爽。
不过,也碰到了些许问题,在使用dataGridView进行数据绑定的时候,总是把数据库中整个表显示在页面上,连HeaderText属性显示的都是数据库中英文的字段。
而自己只想实现显示数据库中自定义的字段,把一些字段不显示出来。这问题,也是小琢磨了一下~~~~实现如下:
1:在dataGridView设计界面添加需要显示的列数,并赋予相应的名称:
2:编写后台代码,进行数据源的绑定,绑定的是datatable。然后把dataGridView的自动创建列的属性设置为false。
1
2
3
4
|
DataSet ds = userInfoBll.GetAllList();
//取消 dataGridView1 的自动创建列
this
.dataGridView1.AutoGenerateColumns =
false
;
this
.dataGridView1.DataSource = ds.Tables[0];
|
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();
|