当点击一个按钮时,它会在用户为windwos手机设备设置的主题颜色中突出显示。应该调用什么方法来覆盖这种行为。我尝试使用MouseEnter并将背景设置为白色,但是它不起作用,
System.Windows.Media.SolidColorBrush whiteBrush = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(255, 255, 255, 255));
signIn.Background = whiteBrush;
有人可以帮忙吗?