4
正如標題所示,基本上我想要做與this for WPF相同的事情,但在Silverlight中取而代之。保持Silverlight文本框選擇顯示雖然沒有重點?
但在我的TextBox.LostFocus事件中,沒有e.Handled。我也嘗試使用VisualStateManger.GoToState專注狀態:
VisualStateManager.GoToState(TextBox1, "Focused", false);
TextBox1.SelectionStart = 0;
TextBox1.SelectionLength = 3;
TextBox1.SelectionForeground = new SolidColorBrush(Colors.Orange);
但它也不起作用。
有什麼解決方法嗎?