WPF窗口默认TextBox焦点
Posted lonelyxmas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF窗口默认TextBox焦点相关的知识,希望对你有一定的参考价值。
原文:WPF窗口默认TextBox焦点
当WPF窗口显示后 如果想设置某个输入框为默认焦点 使用 FocusManager
- <Grid FocusManager.FocusedElement="{Binding ElementName=inputbox}">
- <TextBox Name="inputbox" HorizontalAlignment="Left" Height="24" Margin="10,10,0,0"
- Text="{Binding SearchText, Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"
- TextWrapping="Wrap" VerticalAlignment="Top" Width="161">
- <TextBox.InputBindings>
- <!--键盘事件绑定-->
- <KeyBinding Command="{Binding Search_Click}" Key="Enter"/>
- </TextBox.InputBindings>
- </TextBox>
- </Grid>
以上是关于WPF窗口默认TextBox焦点的主要内容,如果未能解决你的问题,请参考以下文章