c# – 如何在Windows应用程序中将Dataset绑定到DataGridView

前端之家收集整理的这篇文章主要介绍了c# – 如何在Windows应用程序中将Dataset绑定到DataGridView前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经创建了 Windows应用程序.在这里,我在数据集中有多个表,现在我要绑定到一个DataGridView.有谁能够帮助我?

解决方法

以下将显示一个数据集表
DataGridView1.AutoGenerateColumns = true;
DataGridView1.DataSource = ds; // dataset
DataGridView1.DataMember = "TableName"; // table name you need to show

如果要显示多个表,则需要在所有表中创建一个数据表或自定义对象集合.

如果两个表具有相同的表模式

dtAll = dtOne.Copy(); // dtOne = ds.Tables[0]
dtAll.Merge(dtTwo); // dtTwo = dtOne = ds.Tables[1]

DataGridView1.AutoGenerateColumns = true;
DataGridView1.DataSource = dtAll ; // datatable

示例代码模式所有表

DataTable dtAll = ds.Tables[0].Copy();
for (var i = 1; i < ds.Tables.Count; i++)
{
     dtAll.Merge(ds.Tables[i]);
}
DataGridView1.AutoGenerateColumns = true;
DataGridView1.DataSource = dtAll ;
原文链接:https://www.f2er.com/csharp/94479.html

猜你在找的C#相关文章