我有一个装满xml数据的组合框。值成员来自xml文件。我想从xml文件中读取所选元素。
var xmlDocument = XDocument.Load(@"data\tools.xml");
var ToolData = from r in xmlDocument.Descendants("ToolClass").Where
(r => (string)r.Attribute("ToolID") == ToolListComboBox.SelectedValue.ToString())
select new
{
Tooldia = r.Element("ToolDia").Value,
Tooltooth = r.Element("ToolTooth").Value,
Toolfeed= r.Element("ToolFeedPerTooth").Value,
Toolcut = r.Element("ToolCuttingSpeed").Value
};
foreach(var r in ToolData)
{
CalcToolDia.Text = r.Tooldia.ToString();
}
我尝试使用此代码,但是没有用。
编辑: 我有这个XMl文件:
<?xml version="1.0"?>
<ArrayOfToolClass xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ToolClass>
<ToolID>1</ToolID>
<ToolName>Multiflute Endmill</ToolName>
<ToolDia>8</ToolDia>
<ToolTooth>4</ToolTooth>
<ToolApmxs>32</ToolApmxs>
<ToolCuttingSpeed>150</ToolCuttingSpeed>
<ToolFeedPerTooth>0.04</ToolFeedPerTooth>
<ToolAe>8</ToolAe>
<ToolAp>4</ToolAp>
<ToolManufacturer>SECO</ToolManufacturer>
<ToolSerial>DKFLJDSKJ</ToolSerial>
</ToolClass>
<ToolClass>
<ToolID>2</ToolID>
<ToolName>Multiflute Endmill</ToolName>
<ToolDia>4</ToolDia>
<ToolTooth>4</ToolTooth>
<ToolApmxs>25</ToolApmxs>
<ToolCuttingSpeed>235</ToolCuttingSpeed>
<ToolFeedPerTooth>0.03</ToolFeedPerTooth>
<ToolAe>4</ToolAe>
<ToolAp>0.4</ToolAp>
<ToolManufacturer>SECO</ToolManufacturer>
<ToolSerial>DJFKLSL</ToolSerial>
</ToolClass>
</ArrayOfToolClass>
组合框包含以下内容:
var xmlDocument = XDocument.Load(@"data\tools.xml");
var toolist = xmlDocument.Descendants("ToolClass")
.Select(tc => new
{
Display = tc.Element("ToolDia").Value + "x" + tc.Element("ToolApmxs").Value + " mm - " + tc.Element("ToolName").Value,
Value = tc.Element("ToolID").Value
}).ToList();
ToolListComboBox.DisplayMember = "Display";
ToolListComboBox.ValueMember = "Value";
ToolListComboBox.DataSource = toolist;
当我在组合框中选择一个项目时,她会给我ToolID。 之后,我想从xml文件中读取元素,其中ToolID是组合框选择的ToolID。
答案 0 :(得分:0)
如果我正确理解您有一个元素值,并且想要检索提供此值的整个元素-可以尝试以下操作。
To modify my sample provided to align to your example:
XElement root = XElement.Load(@"data\tools.xml");
IEnumerable<XElement> address =
from el in root.Elements("ToolClass")
where (string)el.Attribute("ToolID") ==ToolListComboBox.SelectedValue.ToString()
select el;
foreach (XElement el in address)
Console.WriteLine(el.Tooldia.ToString());
答案 1 :(得分:0)
我认为错误是-您在使用属性而不是元素。将其更改为
(string)r.Element("ToolID").Value
这就是它的样子
var xmlDocument = XDocument.Load(@"data\tools.xml");
var ToolData = from r in xmlDocument.Descendants("ToolClass").Where
(r => (string)r.Element("ToolID").Value == ToolListComboBox.SelectedValue.ToString())
select new
{
Tooldia = r.Element("ToolDia").Value,
Tooltooth = r.Element("ToolTooth").Value,
Toolfeed= r.Element("ToolFeedPerTooth").Value,
Toolcut = r.Element("ToolCuttingSpeed").Value
};
foreach(var r in ToolData)
{
CalcToolDia.Text = r.Tooldia.ToString();
}