只从一个分支读取子节点

Read child node from one branch only

我看了这里的几个例子,看起来我遵循了正确的程序,但它仍然没有用,所以我显然做错了什么。 我有两个组合框,我试图从 XML 文件中填充它们 这个想法是,一旦做出第一个选择,就会生成第二个组合框的选择集,如果我切换第一个选择,那么第二个组合框也应该刷新

这是我的XML

<?xml version="1.0" encoding="utf-8"?>
<ComboBox>
    <Customer name="John"/>
        <Data>
            <System>Linux</System>
        </Data>
    <Customer name="Fernando"/>
        <Data>
            <System>Microsoft</System>
            <System>Mac</System>
        </Data>
</ComboBox>

这是我的 C# 代码

//This part works the customer_comboBox is generated correctly with John and Fernando

 XmlDocument doc = new XmlDocument();
 doc.Load(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) +@"\comboBox.xml");
 XmlNodeList customerList = doc.SelectNodes("ComboBox/Customer");

 foreach (XmlNode node in customerList)
 {
     customer_comboBox.Items.Add(node.Attributes["name"].InnerText);
 }

//putting the selected item from the first comboBox in a string
string selected_customer = customer_comboBox.SelectedItem.ToString();

//This is the part that does not work
//I want to read XML node that matches selected_customer and populate systems available

foreach (XmlNode node in customerList)
{
      if (node.Attributes["name"].InnerText == selected_customer) 
      {
          foreach (XmlNode child in node.SelectNodes("ComboBox/Customer/Data"))
          {
             system_comboBox.Items.Clear();
             system_comboBox.Items.Add(node["System"].InnerText); 
          }
      } 
}

我连续两天都在试图解决这个问题。不确定我的 XML 是否错误或我调用子节点的方式。

我检查了您的代码,并进行了以下更改。

1。 XML-文件

Customer 节点已关闭且未嵌套 Data/System 节点。这导致以下两个 xpath:

  1. ComboBox/Customer;
  2. 组合框/Data/System;

通过在 Customer 节点内嵌套 Data/System 节点是解决方案的第一部分:

<?xml version="1.0" encoding="utf-8" ?>
<ComboBox>
  <Customer name="John">
    <Data>
      <System>Linux</System>
    </Data>
  </Customer>
  <Customer name="Fernando">
    <Data>
      <System>Microsoft</System>
      <System>Mac</System>
    </Data>
  </Customer>
</ComboBox>

2。代码的变化

XML 结构中的更改简化了 "node.SelectNodes()" 语句中 xpath 的使用,仅包含 "Data/System"。我还将 "node["System"].InnerText" 简化为 "child.InnerText":

foreach (XmlNode node in customerList)
{
    if (node.Attributes["name"].InnerText == selected_customer)
    {
        system_comboBox.Items.Clear();

        foreach (XmlNode child in node.SelectNodes("Data/System"))
        {
            system_comboBox.Items.Add(child.InnerText);
        }
    }
}

3。删除此块

因为客户列表需要它的项目在运行时已经存在。将项目手动添加到组合框并删除此块:

foreach (XmlNode node in customerList)
{
    customer_comboBox.Items.Add(node.Attributes["name"].InnerText);
}