在文本框中的树视图中显示 XML 架构数据
我是这个项目的新手。它是在 Visual Studio 2010 上用 C# 编写的。我试图在带有树视图的文本框中显示此 XML 架构。我在将其变成树视图时遇到问题。
数据集 dsM= new DataSet("M"); string filePath = @"C:\Documents and Settings\Administrator\Desktop\M.xsd"; dsM.ReadXml(文件路径); System.IO.StringWriter swXML = new System.IO.StringWriter(); dsM.WriteXmlSchema(swXML); textBox.Text = swXML.ToString();
I am new to this project. It is on visual studio 2010 in C#. I am trying to show this XML schema in a textbox with a treeview. I have problem making it into a treeview.
DataSet dsM= new DataSet("M"); string filePath = @"C:\Documents and Settings\Administrator\Desktop\M.xsd"; dsM.ReadXml(filePath); System.IO.StringWriter swXML = new System.IO.StringWriter(); dsM.WriteXmlSchema(swXML); textBox.Text = swXML.ToString();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
修改它以满足您的需求...
(要执行相反的操作,请将 TreeView 转换为 XML,这是一个很好的演示,无需在这里重复)
modify this to suit your needs...
(to do the reverse, convert a TreeView to XML, here is a nice demonstration not necessary repeating here)