我的小项目进展顺利,但是我偶然发现了一些可能很愚蠢的事情......
不知何故,当我打开应用程序时,没有任何焦点,我必须使用"tab"键才能将焦点移动到命令栏并能够使用键盘快捷键。
然后。。。。
当我使用滚动查看器移动图像或缩放时,我无法再次使用键盘快捷键,直到我使用"选项卡"将其移动到命令栏。
我试过了
cmdbar.Focus(FocusState.Programmatic);
应用程序中的任何地方,我认为它可能很有用,但无济于事。我也尝试使用键盘加速器,但它没有帮助。有什么提示吗?
这是我的 XAML 代码:
<Page.Resources>
<DataTemplate x:Key="myResourceTemplate">
<TextBlock Text="{Binding}" MaxHeight="10" FontSize="8" HorizontalAlignment="Left" VerticalAlignment="Top" FontWeight="Bold" LineHeight="9" Height="Auto" />
</DataTemplate>
</Page.Resources>
<Page.BottomAppBar>
<CommandBar x:Name="cmdbar" ClosedDisplayMode="Compact" HorizontalAlignment="Left" HorizontalContentAlignment="Left" VerticalAlignment="Center" KeyUp="kb_openkey" Opacity="1" Visibility="Visible" Background="#260000FF">
<CommandBar.Content>
<Grid/>
</CommandBar.Content>
<AppBarButton Icon="ZoomIn" Label="AppBarButton" Tapped="Zoomin_Click"/>
<AppBarButton Icon="ZoomOut" Label="AppBarButton" Tapped="Zoomout_Click"/>
<AppBarToggleButton x:Name="randomstatus" Icon="Shuffle" Label="Random" Tapped="Togglerandom"/>
<... a bunch of other buttons >
</CommandBar>
</Page.BottomAppBar>
<Grid x:Name="imggrid" Background="Black" BorderBrush="Black" KeyUp="kb_openkey">
<ScrollViewer x:Name="imageView_scroller" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Disabled" ZoomMode="Enabled" RequestedTheme="Dark" KeyUp="kb_openkey">
<Image x:Name = "ctlImage" Grid.Column ="0" VerticalAlignment = "Stretch" HorizontalAlignment = "Stretch" Stretch = "Uniform"
PointerWheelChanged="ctlImage_PointerWheelChanged"
ManipulationMode = "TranslateX, TranslateY, Scale"
ManipulationStarted = "ctlImage_ManipulationStarted"
ManipulationDelta = "ctlImage_ManipulationDelta"
ManipulationCompleted = "ctlImage_ManipulationCompleted"
KeyUp="kb_openkey"
>
<Image.RenderTransform>
<CompositeTransform x:Name="image_Transform" ></CompositeTransform >
</Image.RenderTransform >
</Image>
</ScrollViewer>
</Grid>
以下是我处理键盘输入的方法:
void kb_openkey(object sender, KeyRoutedEventArgs e)
{
if ((int)e.Key >= 1 && (int)e.Key <= 255)
{
switch ((int)e.Key)
{
case 70: //A
....dothis....;
break;
case 65: //A
.... dothat....;
break;
}
}
}
设置焦点即可使用键盘加速器作为快捷方式。因此,您不需要在图像或命令栏上使用键上键或键下事件,除非它们具有与设置焦点无关的其他任务。
您应该在命令栏中将键盘加速器与访问键和任何选项修饰符(如Ctrl或Shift(一起使用
应用栏按钮上的访问密钥示例
<AppBarButton
Icon="Copy"
Label="Copy"
ToolTipService.ToolTip="Copy (Ctrl+C)"
Click="OnCopy"
AccessKey="C">
<AppBarButton.KeyboardAccelerators>
<KeyboardAccelerator
Modifiers="Control"
Key="C" />
</AppBarButton.KeyboardAccelerators>
</AppBarButton>
您可以在我上面提供的文档链接中找到更多详细信息。
更新:
当您点击另一个UI元素时,前一个元素的焦点会自动删除,您不需要图像上的KeyUp事件以及命令栏,您只需使用全局CoreWindow.KeyDown,它可以帮助您完成任何与键盘相关的命令
,您想要完成@touseefbsb,非常有用!!谢谢!无论什么内容获得焦点并被单击,它都会处理密钥。
所以我的代码是,供参考:
在 XAML 中的页面部分中,添加:
Loaded="initkbd"
Unloaded="unloadkbd"
在 C# 部分中,添加:
//Add the key handler method to the KeyDown handlers
private void initkbd(object sender, RoutedEventArgs e)
{
Window.Current.CoreWindow.KeyDown += kb_openkey;
cmdbar.Content = "Added to keys";
}
//Remove the keyhandler method from the list
private void unloadkbd(object sender, RoutedEventArgs e)
{
Window.Current.CoreWindow.KeyDown -=kb_openkey;
}
然后,密钥处理程序如下所示:
private void kb_openkey(CoreWindow sender, KeyEventArgs e)
{
//Mark the event as handled
e.Handled = true;
int keypressed = (int) e.VirtualKey;
//Than handle the key, based on its keycode
if ((int)keypressed >= 1 && (int)keypressed <= 255)
{
switch (keypressed)
{
case 70: //F
//do something when F is presed
break;
case 76: //L dialog to show items
//Do something when L is pressed
break;
}
}
}