我正在玩ExpressionDark.xaml主题。我在App.xaml中设置主题:
<Application x:Class="WpfApplication4.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary Source="Themes/ExpressionDark.xaml"/>
</Application.Resources>
</Application>
我看了他们是如何设置其他控件的颜色和样式的,但是无法在窗口中产生相同的结果。
如果您愿意,可以看到XAML here。
这是我正在尝试的XAML:
<Style TargetType="{x:Type Window}">
<Setter Property="Background" Value="{DynamicResource BlackTestBrush}" />
<Style.Triggers>
</Style.Triggers>
</Style>
<SolidColorBrush x:Key="BlackTestBrush" Color="#FF000000" />
关于我在这里做错了什么想法?
由于