我有以下 XML:
<!--Gaffer Tape Regions-->
<masks>
<mask name="Serato">
<rectangle>
<xPosition>100</xPosition>
<yPosition>100</yPosition>
<height>100</height>
<width>100</width>
</rectangle>
<rectangle>
<xPosition>500</xPosition>
<yPosition>500</yPosition>
<height>100</height>
<width>100</width>
</rectangle>
</mask>
<mask name="Traktor">
<rectangle>
<xPosition>180</xPosition>
<yPosition>70</yPosition>
<height>200</height>
<width>300</width>
</rectangle>
<rectangle>
<xPosition>500</xPosition>
<yPosition>500</yPosition>
<height>50</height>
<width>160</width>
</rectangle>
</mask>
</masks>
我想检索名称为“Serato”的掩码元素下的所有矩形元素。
在 Linq to XML 中执行此操作的最佳方法是什么?
编辑:添加了不起作用的代码
目前正在尝试这个:
XDocument maskData = XDocument.Load(folderPath + @"\masks.xml");
var masks =
from ma in maskData.Elements("mask")
where ma.Attribute("name").Value == "Serato"
from rectangle in ma.Elements("rectangle")
select rectangle;
但是掩码查询返回 null。