<Window.Resources>
<Style TargetType="{x:Type Button}">
<Setter Property="FontFamily" Value="Times New Roman" />
<Setter Property="FontSize" Value="30" />
<Setter Property="FontWeight" Value="Bold" />
<Setter Property="Background" Value="#FFCA5132" />
</Style>
</Window.Resources>
这个上面的代码看起来像是将WPF样式应用于特定窗口中的所有按钮的正确选择。但我想将这种风格应用于我程序中的所有按钮。
我想我需要在<Application.Resources></Application.Resources>
中写下这段代码。但它没有运行。我怎么能这样做?
答案 0 :(得分:0)
<Application.Resources>
是ResourceDictionary
。您无法将ResourceDictionary
和Style
添加到其中,就像您在代码中所做的那样。将Style
放在ResourceDictionary
内,如下所示:
<Application.Resources>
<ResourceDictionary Source="/PresentationFramework.Aero
, Version=3.0.0.0,Culture=neutral
, PublicKeyToken=31bf3856ad364e35
, ProcessorArchitecture=MSIL;component/themes/aero.normalcolor.xaml">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Style\AppStyle.xaml"></ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
<Style TargetType="{x:Type Button}">
<Setter Property="FontFamily" Value="meiryo" />
<Setter Property="FontSize" Value="12" />
</Style>
</ResourceDictionary>
</Application.Resources>