在xaml页面中已设置Background="#BFB4ABAB",但是在模拟器中运行时,一点击这个文本框,它的背景色就会变为白色。如何让它背景色不变为白色,仍为#BFB4ABAB?
------解决方案--------------------------------------------------------
你需要修改控件模板的press状态的style
------解决方案--------------------------------------------------------
this.LoginName.Foreground = new SolidColorBrush(Color.FromArgb(255,0,0,0));
this.LoginName.SelectionBackground = new SolidColorBrush(Color.FromArgb(255,154,166,188));