我在堆栈面板中有一个按钮
<StackPanel>
<Button x:Name="CreateBtn" Content="Create" Style="{StaticResource PopUpButton}" Width="120" HorizontalAlignment="Right" Margin="0 60 30 0" Command="{Binding SaveCardTypeCommand}" />
</StackPanel>
在文件中使用样式
<Style x:Key="PopUpButton" TargetType="Button">
<Setter Property="Foreground" Value="#1172b7"/>
<Setter Property="BorderBrush" Value="#1172b7"/>
<Setter Property="BorderThickness" Value="3"/>
</Style>
当按钮被禁用时,我需要将内容和边框笔刷的颜色更改为红色
我怎样才能做到这一点?
最好的祝福