如何在wpf中为按钮定义全局文本颜色?

时间:2017-04-08 15:59:20

标签: c# wpf xaml

如何在App.xaml中为按钮定义全局文本颜色?背景设置很好。

后台设置xaml标记:

 <Application.Resources>
        <Style TargetType="{x:Type Button}">
            <Setter Property="Background" Value="Gray"/>
        </Style>
 </Application.Resources>

文字颜色?

抱歉我的英语不好。请帮我!谢谢。

1 个答案:

答案 0 :(得分:0)

您可以设置Foreground属性以应用文本颜色格式,类似于您使用Background属性的方式:

<Setter Property="Foreground" Value="Red"/>