每当我按住按钮时,我都会看到蓝色背景,直到我松开按钮
我尝试使用键ButtonPressedBackgroundThemeBrush将其重置为白色
这是我的按钮代码
<Button Content="Submit" BorderThickness="0" HorizontalAlignment="Stretch" Grid.Row="0" Grid.Column="1" FontSize="21" Height="85" BorderBrush="White" Command="{Binding testCommand}" Foreground="{StaticResource Green}">
<Button.Resources>
<SolidColorBrush x:Key="ButtonPressedBackgroundThemeBrush" Color="White" />
</Button.Resources>
</Button>
但由于某种原因它不起作用。