如何在App.xaml中为按钮定义全局文本颜色?背景设置很好。
后台设置xaml标记:
<Application.Resources>
<Style TargetType="{x:Type Button}">
<Setter Property="Background" Value="Gray"/>
</Style>
</Application.Resources>
文字颜色?
抱歉我的英语不好。请帮我!谢谢。
答案 0 :(得分:0)
您可以设置Foreground
属性以应用文本颜色格式,类似于您使用Background
属性的方式:
<Setter Property="Foreground" Value="Red"/>