为什么 Control Key 不触发 KeyDown 事件? (UWP)
Why doesn't Control Key trigger KeyDown event? (UWP)
我正在监听 KeyDown 事件,因为我想使用 Control+(Shift)+Tab 循环浏览我的 PivotItems。但是,Control 和 Shift 键不会触发该事件。这是为什么?
在后面的代码中:
rootPivot.KeyDown += (s, e) => {
if(Window.Current.CoreWindow.GetKeyState(VirtualKey.Control).HasFlag(CoreVirtualKeyStates.Down) && e.Key == VirtualKey.Tab) {
//Change selected index
}
e.Handled = true;
};
实际上要触发所有按键,您应该使用 PreviewKeyDown 事件。确保根据需要设置 e.Handled。
https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.uielement.previewkeydown
/*XAML Code*/
<Page
x:Class="App1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<Pivot x:Name="RootPivot" PreviewKeyDown="RootPivot_PreviewKeyDown">
<PivotItem Header="Item1"></PivotItem>
<PivotItem Header="Item2"></PivotItem>
<PivotItem Header="Item3"></PivotItem>
</Pivot>
</Grid>
</Page>
//C# code
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
}
private async void RootPivot_PreviewKeyDown(object sender, KeyRoutedEventArgs e)
{
if(e.Key == Windows.System.VirtualKey.Control)
{
MessageDialog dialog = new MessageDialog("You pressed control");
await dialog.ShowAsync();
}
}
}
我正在监听 KeyDown 事件,因为我想使用 Control+(Shift)+Tab 循环浏览我的 PivotItems。但是,Control 和 Shift 键不会触发该事件。这是为什么?
在后面的代码中:
rootPivot.KeyDown += (s, e) => {
if(Window.Current.CoreWindow.GetKeyState(VirtualKey.Control).HasFlag(CoreVirtualKeyStates.Down) && e.Key == VirtualKey.Tab) {
//Change selected index
}
e.Handled = true;
};
实际上要触发所有按键,您应该使用 PreviewKeyDown 事件。确保根据需要设置 e.Handled。
https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.uielement.previewkeydown
/*XAML Code*/
<Page
x:Class="App1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<Pivot x:Name="RootPivot" PreviewKeyDown="RootPivot_PreviewKeyDown">
<PivotItem Header="Item1"></PivotItem>
<PivotItem Header="Item2"></PivotItem>
<PivotItem Header="Item3"></PivotItem>
</Pivot>
</Grid>
</Page>
//C# code
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
}
private async void RootPivot_PreviewKeyDown(object sender, KeyRoutedEventArgs e)
{
if(e.Key == Windows.System.VirtualKey.Control)
{
MessageDialog dialog = new MessageDialog("You pressed control");
await dialog.ShowAsync();
}
}
}