这是 XML 文件
<?xml version="1.0" encoding="UTF-8"?>
<container version="1.0" xmlns="urn:oasis:names:tc:opendocument:xmlns:container">
<rootfiles>
<rootfile media-type="application/oebps-package+xml" full-path="EPUB/wasteland.opf"/>
</rootfiles>
</container>
这是我的代码
XElement XmlElement;
XmlElement = XElement.Load(containerXml.Stream);
TextBlock tbl= new TextBlock();
foreach (XElement level1Element in XmlElement.Elements("rootfiles"))
{
foreach (XElement level2Element in level1Element.Elements("rootfile"))
{
tbl.Text = level2Element.Attribute("full-path").Value;
}
}
文本块应该更改为“EPUB/wasteland.opf”,但为什么不会呢?