属性最下面的Column项:
把每一列的字段绑定,更改显示的标题。
数据绑定代码:
1 string sql = "select IncomeExpendTypeID , TypeName , IncomeExpendTypeName , Remark from IncomeExpendType"; 2 3 this.dataGridView1.DataSource = shl.ExecuteDataTable(sql, CommandType.Text);
*当然其中使用了SQLHelper助手类,不过只要是获得数据,直接绑定到datagridview控件即可。
完成。
最终效果:
完成。
时间: 2024-10-27 08:26:38