中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c#中datagridview控件綁定數據的方式有哪些

小億
185
2023-08-06 04:25:41
欄目: 編程語言

C#中DataGridView控件可以通過以下幾種方式進行數據綁定:

  1. 使用DataGridView.DataSource屬性:將數據源賦值給DataGridView的DataSource屬性,如:

dataGridView1.DataSource = myDataTable;

  1. 使用DataGridView.Rows屬性:通過遍歷數據源,將數據逐行添加到DataGridView的Rows屬性中,如:

foreach (DataRow row in myDataTable.Rows)

{

dataGridView1.Rows.Add(row.ItemArray);

}

  1. 使用DataGridView.Columns屬性:通過遍歷數據源的列,創建DataGridView的列,并將數據逐列添加到DataGridView的Columns屬性中,如:

foreach (DataColumn column in myDataTable.Columns)

{

dataGridView1.Columns.Add(column.ColumnName, column.ColumnName);

}

for (int i = 0; i < myDataTable.Rows.Count; i++)

{

dataGridView1.Rows.Add(myDataTable.Rows[i].ItemArray);

}

  1. 使用BindingSource控件:將數據源綁定到一個BindingSource控件上,然后將BindingSource控件作為DataGridView的數據源,如:

BindingSource bindingSource1 = new BindingSource();

bindingSource1.DataSource = myDataTable;

dataGridView1.DataSource = bindingSource1;

以上是常見的DataGridView數據綁定的方式,可以根據具體情況選擇適合的方式。

0
南澳县| 安徽省| 绿春县| 北流市| 永靖县| 英超| 河西区| 巴中市| 喀喇沁旗| 遵化市| 汽车| 铜梁县| 白城市| 瑞丽市| 额济纳旗| 百色市| 广河县| 新和县| 龙胜| 且末县| 乌拉特后旗| 罗定市| 南丹县| 奇台县| 昭通市| 宣恩县| 江川县| 凭祥市| 武冈市| 通城县| 嫩江县| 临夏市| 华亭县| 南召县| 梧州市| 山东省| 页游| 信丰县| 蕲春县| 通许县| 峨边|