我想知道用户何时在Windows 10平板电脑上按 tab 键,以便我可以在我的 uwp应用中捕获并执行一些操作。
>答案 0 :(得分:0)
解决!!!!
我尝试
private void txt_Nombre_KeyDown(object sender, KeyRoutedEventArgs e)
{
if (e.Key == Windows.System.VirtualKey.Tab)
{
//Action do it
}
}
带有事件KeyDown