使用XDocument解析并向XAML添加元素

时间:2013-10-22 09:08:13

标签: c# .net linq linq-to-xml

我得到了一份XAML文件如下:

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:TLApp.Themes.Schemes">

    <SolidColorBrush x:Key="list_expend_color" Color="#444444" />
    <SolidColorBrush x:Key="list_separator" Color="#8c8c8c" />
    <SolidColorBrush x:Key="tab_icon_color_selected" Color="#bfbfbf" />

    <SolidColorBrush x:Key="button_dark" Color="#616161" />
    <SolidColorBrush x:Key="button_light" Color="#919191" />
    <SolidColorBrush x:Key="text_color_custom" Color="#616161" />
    <SolidColorBrush x:Key="text_color_title" Color="#bfbfbf" />
    <SolidColorBrush x:Key="startscreen_background" Color="#1b1b1b" />

</ResourceDictionary>

我想根据每个实体刷的给定颜色创建新的颜色元素。但我不清楚的第一件事是为什么我无法选择任何SolidColorBrush元素?我试过Descendants(“SolidColorBrush”)和Elements(“SolidColorBrush”)它们都没有按预期工作。如果我使用没有选择器的Elements(),我会得到它们,我不想要的因为我想添加元素,但是如果我现在开始添加我的代码中显示的颜色元素,每个Color元素将附加“x”-Namespace那么如何解决这个问题呢?

XDocument xdoc = XDocument.Load(file);

XNamespace x = "http://schemas.microsoft.com/winfx/2006/xaml";

foreach (XElement brush in xdoc.Root.Descendants("SolidColorBrush"))
{
    var key = brush.Attribute(x+"Key");
    var val = brush.Attribute("Color");

    string color_key = "cl_" + key.Value;
    string color_val = val.Value;

    xdoc.Root.Add(
        new XElement("Color",
            new XAttribute(x+"Key", color_key),
            new XText(color_val)
        )
    );
}

xdoc.Save(file);

1 个答案:

答案 0 :(得分:1)

您还需要定义默认命名空间:

XNamespace ns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation";

foreach (XElement brush in xdoc.Root.Elements(ns + "SolidColorBrush")) { ... }