在winform中的下拉列表中如何导入XML中的数据?
<Table><Account ID="123456" Password="000000" />
<Account ID="111111" Password="000000" />
<Account ID="222222" Password="000000" />
<Account ID="333333" Password="000000" />
</Table>
我的XML文件时这样的,我想要导入Account里的ID到下拉列表里,怎么才能实现?
XmlDocument doc = new XmlDocument();
doc.Load("Customer.xml");
XmlNode node = doc.SelectSingleNode("Table/Account[ID='" + this.cardNum.Text + "']");
for (int i = 0; i < node.ChildNodes.Count; i++)
{
Console.WriteLine(node.ChildNodes[i].InnerText);
}
我用了这个方法,但是便一起说条件错误,这要怎么改?