LINQ to XML:如何从所有元素获取所有属性的集合

发布于 2024-12-21 22:01:03 字数 446 浏览 0 评论 0原文

我有一些像这样的 XML:

<Section xmlns=\"http:schemas.microsoft.com/winfx/2006/xaml/presentation\"> <Paragraph FontSize=\"12\" FontFamily=\"Arial\" Foreground=\"#FF000000\" FontWeight=\"Normal\" FontStyle=\"Normal\" FontStretch=\"Normal\" TextAlignment=\"Left\"> <Run FontWeight=\"Normal\" Text=\"space \" /> </Paragraph> </Section>

有没有办法获取所有 FontWeight 属性、所有 FontSize 属性等的集合,而不管父元素如何?

I have some XML like this:

<Section xmlns=\"http:schemas.microsoft.com/winfx/2006/xaml/presentation\"> <Paragraph FontSize=\"12\" FontFamily=\"Arial\" Foreground=\"#FF000000\" FontWeight=\"Normal\" FontStyle=\"Normal\" FontStretch=\"Normal\" TextAlignment=\"Left\"> <Run FontWeight=\"Normal\" Text=\"space \" /> </Paragraph> </Section>

Is there a way to get a collection of all the FontWeight attributes, all the FontSize attributes, etc., regardless of the parent element?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑咖 2024-12-28 22:01:03

假设您有XDocument doc = XDocument.Load("file.xml"),您可以使用doc.Descendants().Attributes()获取所有属性或a的所有属性某个名称,例如 doc.Descendants().Attributes("FontSize")。

Assuming you have XDocument doc = XDocument.Load("file.xml") you can get all attributes with doc.Descendants().Attributes() or all attributes of a certain name with e.g. doc.Descendants().Attributes("FontSize").

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文