我希望能够在 XAML 中禁用按钮时更改它的背景颜色,但我不知道要覆盖什么。
有人知道我需要做什么吗?
我正在使用 XAML 和 C# 4.5 创建一个 Windows 8 商店应用程序。
我当前的按钮样式如下:
<Style x:Key="MySaveButtonStyle"
TargetType="ButtonBase">
<Setter Property="FontFamily"
Value="Segoe UI Symbol" />
<Setter Property="FontSize"
Value="36" />
<Setter Property="Content"
Value="" />
<Setter Property="Height"
Value="70" />
<Setter Property="Width"
Value="80" />
<Setter Property="BorderBrush"
Value="White" />
<Setter Property="Foreground"
Value="{StaticResource ButtonForegroudBrush}" />
<Setter Property="BorderThickness"
Value="1" />
<Setter Property="Background"
Value="White" />
</Style>
谢谢是提前。