如何在WPF应用程序中应用不同的颜色方案

时间:2010-10-01 14:11:00

标签: wpf

有没有办法在运行时替换WPF应用程序的所有画笔定义,只声明使用它一次的样式?这对于不同的颜色方案很有用,但保持相同的UI并将其声明一次。我可以找到的所有示例都复制了不同主题文件中的样式 - 这是唯一的方法吗?

小例子:

Blue.xaml

<SolidColorBrush x:Key="DefaultBackgroundBrush" Color="Blue"/>

Yellow.xaml

<SolidColorBrush x:Key="DefaultBackgroundBrush" Color="Yellow"/>

generic.xaml?

<Style TargetType="{x:Type Button}">
  <Setter Property="Background" Value="{StaticResource DefaultBackgroundBrush}" />
</Style>

1 个答案:

答案 0 :(得分:4)

在发布问题后,我自己想出来,通常就是这样;)

下面的代码用于测试,所以不要介意它的不性感:

private void MenuItemBlue_Click(object sender, RoutedEventArgs e)
{
    ResourceDictionary genericSkin = new ResourceDictionary();
    genericSkin.Source = new Uri(@"/Themes/" + "generic" + ".xaml", UriKind.Relative);

    ResourceDictionary blueSkin = new ResourceDictionary();
    blueSkin.Source = new Uri(@"/Themes/" + "blue" + ".xaml", UriKind.Relative);

    Application.Current.Resources.MergedDictionaries.Clear();

    Application.Current.Resources.MergedDictionaries.Add(genericSkin);
    Application.Current.Resources.MergedDictionaries.Add(blueSkin);
}

将“generic.xaml”中定义的样式更改为DynamicResource

<Style TargetType="{x:Type Button}">
    <Setter Property="Background" Value="{DynamicResource defaultColor}" />
</Style>

其他建议值得欢迎。