如标题所示,基本上我想为 WPF做与此相同的事情,但改为在 Silverlight 中。
但是在我的 TextBox.LostFocus 事件中,没有 e.Handled。而且我还尝试使用 VisualStateManger.GoToState 来聚焦状态:
VisualStateManager.GoToState(TextBox1, "Focused", false);
TextBox1.SelectionStart = 0;
TextBox1.SelectionLength = 3;
TextBox1.SelectionForeground = new SolidColorBrush(Colors.Orange);
但它也不起作用。
有什么解决方法吗?