如何使用节点的Tags属性,以便获取xml节点的属性?
我必须在Windows窗体中显示xml树。当我单击任何节点时,其属性应以相同的形式显示在列表框中。
我想使用tags属性,但我需要将表单中的树节点转换为xml节点。我想将树节点存储在标记中,然后将该标记强制转换为xml节点。
我该如何做到这一点?
答案 0 :(得分:1)
添加TreeNode类时,您的代码如下所示:
// Create the node.
TreeNode newNode = new TreeNode();
// Configure.
...
// Set the tag property to hold the XML element.
XmlElement currentElement = ...;
newNode.Tag = currentElement;
// Add to the tree view.
...
然后,当你有树视图节点时,你会得到这样的元素:
TreeNode currentNode = ...;
// Get the XmlElement.
XmlElement currentElement = (XmlElement) currentNode.Tag;
// Process the element.
...