我正在玩 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 。
这是我正在尝试的 XAML:
<Style TargetType="{x:Type Window}">
<Setter Property="Background" Value="{DynamicResource BlackTestBrush}" />
<Style.Triggers>
</Style.Triggers>
</Style>
<SolidColorBrush x:Key="BlackTestBrush" Color="#FF000000" />
关于我在这里做错了什么的任何想法?
谢谢