我正在尝试将一个主题应用于一堆wpf项目。有一个程序集包含generic.xaml和不同的应用程序。据我所知,我不能将ThemeInfo属性与ResourceDictionaryLocation.ExternalLocation一起使用,因为名称必须与我的程序相同,但我有多个程序......
所以我搜索并发现我只需要在app.xaml中将字典包含为MergedDictionary
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/ClassLibrary1;component/Themes/generic.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
这基本上有效。但是,如果我使用控件的样式,它将不再应用generic.xaml样式:
ClassLibrary1.dll中的generic.xaml
<ResourceDictionary x:Class="ClassLibrary1.Themes.generic"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="{x:Type Button}">
<Setter Property="Background"
Value="Black" />
</Style>
程序中的窗口
<Window x:Class="Theming.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<Style TargetType="Button"
x:Key="ButtonGreenTextStyle">
<Setter Property="Foreground"
Value="Green" />
</Style>
</Window.Resources>
<Grid>
<Button Style="{DynamicResource ButtonGreenTextStyle}" Content="Test" />
</Grid>
</Window>
我需要做的是,WPF会将generic.xaml中的样式理解为所有按钮的basestyle(我知道我还必须编写一个ControlTemplate;上面的代码只是为了简单起见)
答案 0 :(得分:0)
我会尝试两件事
答案 1 :(得分:0)
我找到了另一个解决方案。您必须根据自定义标记编写样式:
这将应用当前主题样式。可以在此处找到此MarkupExtension的代码:
How do I alter the default style of a button without WPF reverting from Aero to Classic?