如何利用xml节点的Tags属性来获取其信息和属性?
如何利用节点的 Tags 属性,以便获取 xml 节点的属性?
我必须在 Windows 窗体中显示 xml 树。 当我单击任何节点时,其属性应该以相同的形式显示在列表框中。
我想利用标签属性,但我需要将表单中的树节点转换为 xml 节点。 我想将树节点存储在标签中,然后将该标签类型转换为 xml 节点。
我怎样才能做到这一点?
How would I make use of the Tags property of a node, so that I can get the attributes of an xml node?
I have to display an xml tree in a Windows Form. When I click on any node, its attributes should get displayed on a list box in same form.
I want to make use of tags property, but I need to convert that tree node in the form into an xml node. I wanted to store the tree node in the tag and then typecast that tag to an xml node.
How can I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加 TreeNode 类时,您的代码将如下所示:
然后,当您拥有树视图节点时,您将获得如下元素:
When adding the TreeNode class, your code would look like this:
Then when you have the tree view node, you would get the element like this: