gpt4 book ai didi

c# - 没有焦点时如何保持WPF TextBox选择?

转载 作者:IT王子 更新时间:2023-10-29 04:33:30 33 4
gpt4 key购买 nike

我想在 WPF TextBox 中显示一个选择,即使它没有获得焦点。我该怎么做?

最佳答案

我已将此解决方案用于 RichTextBox,但我认为它也适用于标准文本框。基本上,您需要处理 LostFocus 事件并将其标记为已处理。

  protected void MyTextBox_LostFocus(object sender, RoutedEventArgs e)
{
// When the RichTextBox loses focus the user can no longer see the selection.
// This is a hack to make the RichTextBox think it did not lose focus.
e.Handled = true;
}

TextBox 不会意识到它失去了焦点,并且仍会显示突出显示的选择。

在这种情况下我没有使用数据绑定(bind),所以这可能会打乱双向绑定(bind)。您可能必须在 LostFocus 事件处理程序中强制绑定(bind)。像这样:

     Binding binding = BindingOperations.GetBinding(this, TextProperty);
if (binding.UpdateSourceTrigger == UpdateSourceTrigger.Default ||
binding.UpdateSourceTrigger == UpdateSourceTrigger.LostFocus)
{
BindingOperations.GetBindingExpression(this, TextProperty).UpdateSource();
}

关于c# - 没有焦点时如何保持WPF TextBox选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/642498/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com