当一个新窗口打开时,我想聚焦一个特定的文本框并选择其中的整个文本。我在这个教程的基础上尝试了一下:https://blogs.msdn.microsoft.com/argumentnullexceptionblogpost/2013/04/12/a-simple-selectall-behavior-for-textboxes/
为了聚焦元素,我在我的网格中使用了这个:
<Grid d:DataContext="{StaticResource DesignTimeLayerViewModel1}" FocusManager.FocusedElement="{Binding ElementName=LayerNameInput}">
并尝试了一个交互行为:
<TextBox x:Name="LayerNameInput"
Text="{Binding MapLayerName, UpdateSourceTrigger=PropertyChanged}"
VerticalContentAlignment="Center"
Width="240">
<i:Interaction.Behaviors>
<behaviors:SelectAllTextBoxBehavior></behaviors:SelectAllTextBoxBehavior>
</i:Interaction.Behaviors>
</TextBox>
行为代码:
public class SelectAllTextBoxBehavior : Behavior<TextBox>
{
protected override void OnAttached()
{
base.OnAttached();
this.AssociatedObject.GotFocus += this.OnTextBoxGotFocus;
}
protected override void OnDetaching()
{
this.AssociatedObject.GotFocus -= this.OnTextBoxGotFocus;
base.OnDetaching();
}
private void OnTextBoxGotFocus(object sender, RoutedEventArgs e)
{
this.AssociatedObject.SelectAll();
}
}
问题是绑定。创建窗口时,行为会正确触发,但实际上TextBox中没有文本。然后初始化TextBox并将文本设置为绑定变量的值,选择将丢失。如果我通过多次使用Tab来重新聚焦TextBox,它可以正常工作。
如何在创建窗口时聚焦TextBox并选择其整个文本?没有大量的代码在背后?
提前感谢!
3条答案
按热度按时间t1qtbnec1#
你可以使用“window_loaded”事件来聚焦你的文本框,这里有一个例子:
unftdfkk2#
我用一个变通方法解决了这个问题。在窗口启动期间设置TextBox的初始文本时,将激发OnTextBoxTextChanged事件。我只是抓住它,选择文本,然后删除事件。
与你的答案相比,黑暗圣堂武士的好处是,当我再次聚焦文本框时,例如。使用tab键,再次选择整个文本。
mec1mxoz3#
为此,我创建了一个附加属性。
您在XAML中声明扩展的名称空间,我使用“ext”作为扩展。
然后,要应用它,只需设置属性。
如果你只是在一个地方这样做,那就太过分了,但是如果你有一个表单,你想在很多文本框上都有这样的行为,那么这个带有样式的表单就很容易了。