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" />
ここで私が間違っていることについてのアイデアはありますか?
ありがとう