Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的解决方案中,我有两个项目作为 Web 服务和窗口应用程序。
我的 Windows 窗体中有一个网格视图。如何在我的网格视图中显示来自 Web 服务的输出,它是 XML 文档的形式?
您可以使用以下代码
DataSet xyz = new DataSet(); xyz.ReadXml("c:\whatever.xml"); gridview.DataSource = xyz.Tables[0].DefaultView; gridview.DataBind();