如何在页面加载时处理UWP keydown事件?

时间:2016-01-28 06:23:39

标签: c# uwp

我可以在点击Grid之后开始输入我的控件,但我希望能够开始输入而无需先点击。有什么东西可以放在后面的代码中,让键盘输入集中在页面加载上吗?

在我的观点中,我有:

     <Grid x:Name="PageGrid"
      KeyDown="{x:Bind ViewModel.OnKeyboardNumberInput, Mode=OneWay}"

在我的ViewModel中,我有:

        public void OnKeyboardNumberInput(object sender, KeyRoutedEventArgs e)
    {

2 个答案:

答案 0 :(得分:1)

您可以在Page此事件的Loaded事件

中执行此操作
  

在构造FrameworkElement并将其添加到对象树并准备好进行交互时发生。

如果您想启用键盘输入,您的控件应该是可编辑的。

当您导航到Page时,它会自动关注此Page中的第一个控件。但我们可以像这样改变这个焦点:

XAML:

<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <TextBox x:Name="txt1" VerticalAlignment="Center" HorizontalAlignment="Center" Width="400" />
    <TextBox x:Name="txt2" VerticalAlignment="Bottom" HorizontalAlignment="Center" Width="400" />
</Grid>
代码背后的代码:

public MainPage()
{
    this.InitializeComponent();
    this.Loaded += Page_Loaded;
}

private void Page_Loaded(object sender, RoutedEventArgs e)
{
    txt2.Focus(FocusState.Keyboard);
}

注意到您可能已经为项目使用了MVVM模式,您可以这样做:

XAML:

<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" Loaded="{x:Bind ViewModel.page_Loaded, Mode=OneWay}">
    <TextBox x:Name="txt1" VerticalAlignment="Center" HorizontalAlignment="Center" Width="400" />
    <TextBox x:Name="txt2" VerticalAlignment="Bottom" HorizontalAlignment="Center" Width="400" />
</Grid>

ViewModel中的代码:

public void page_Loaded(object sender, RoutedEventArgs e)
{
    var grid = sender as Grid;
    var tb = (TextBox)grid.FindName("txt2");
    tb.Focus(FocusState.Keyboard);
}

答案 1 :(得分:0)

如果要键入特定控件,将焦点设置为该控件比尝试处理键盘事件更好。假设一个简单的窗口:

<Window
    x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Loaded="OnWindowLoaded"
    Title="MainWindow" Height="350" Width="525">
    <Grid>
        <TextBox x:Name="myTextBox" />
    </Grid>
</Window>

在代码隐藏中:

private void OnWindowLoaded(object sender, RoutedEventArgs e)
{
    myTextBox.Focus();
}