datagridview绑定datatable
时间: 2023-05-01 22:02:40
浏览: 563
将DataGridView绑定DataTable可以通过以下[步骤](https://geek.csdn.net/educolumn/41e918968ef7840279c31b7f6a0950e3?spm=1055.2569.3001.10083)实现:
1. 创建一个DataTable
2. 将DataTable设置为DataGridView的DataSource属性
3. 在[代码](https://geek.csdn.net/educolumn/1572ef9b473b4e00f6b2bf6d428b7c27?spm=1055.2569.3001.10083)中[添加](https://geek.csdn.net/educolumn/4d4bec229f163522438e69abc8681710?spm=1055.2569.3001.10083)或修改DataTable的行和列
4. DataGridView会自动[更新](https://geek.csdn.net/educolumn/30e87f306d14e49a5ec8ce52988b493b?spm=1055.2569.3001.10083)以[显示](https://geek.csdn.net/educolumn/103ca72607c717122e068b9f06a24df6?spm=1055.2569.3001.10083)DataTable的相应数据
相关问题
c# datagridview绑定datatable
C#中,可以使用DataGridView控件来显示数据,而数据源可以是DataTable。具体步骤如下:
1. 创建一个DataTable对象,添加列和行数据。
2. 创建一个DataGridView对象,设置其DataSource属性为DataTable对象。
3. 在DataGridView中设置列的属性,如HeaderText、DataPropertyName等。
示例代码如下:
// 创建DataTable对象
DataTable dt = new DataTable();
dt.Columns.Add("ID", typeof(int));
dt.Columns.Add("Name", typeof(string));
dt.Rows.Add(1, "Tom");
dt.Rows.Add(2, "Jerry");
// 创建DataGridView对象
DataGridView dgv = new DataGridView();
dgv.DataSource = dt;
// 设置列属性
dgv.Columns[].HeaderText = "编号";
dgv.Columns[].DataPropertyName = "ID";
```