1

我一直在关注这篇文章,将 XML 文件读入 datagridview 控件。

我在这里发布了相关的代码。

string filePath = "Complete path where you saved the XML file";
dsAuthors.ReadXml(filePath);
dataGrid1.DataSource = dsAuthors;
dataGrid1.DataMember = "authors";
dataGrid1.CaptionText = dataGrid1.DataMember;

现在我希望能够在不知道 XML 文件的元素的情况下读取任何 XML 文件,但是上面的方法需要我声明在dataGrid1.DataMember = "authors";随机 XML 文件的情况下,我不会知道。

谢谢,

阿比杰特。

4

1 回答 1

2

幸运的是,以下属性已被填充:

dataGrid1.DataMember = dsAuthors.Tables[0].Tablename;
于 2012-10-22T12:42:46.097 回答