91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
阿克苏市| 朔州市| 黑山县| 朝阳县| 怀宁县| 凌云县| 济宁市| 敦化市| 苏尼特右旗| 青海省| 广州市| 宁河县| 陈巴尔虎旗| 四会市| 泸定县| 旅游| 饶河县| 南宁市| 哈密市| 阿鲁科尔沁旗| 甘谷县| 庄浪县| 清原| 三台县| 墨竹工卡县| 延庆县| 和龙市| 喀喇| 凤冈县| 宾阳县| 锦州市| 墨江| 长寿区| 青田县| 康乐县| 英山县| 安吉县| 革吉县| 新兴县| 长宁区| 洛隆县|