其他分享
首页 > 其他分享> > Wpf 收到键盘事件时执行 ViewModel 中的命令.

Wpf 收到键盘事件时执行 ViewModel 中的命令.

作者:互联网

以 TextBox 中按下 Esc 为例:

1 <TextBox/>
2     <TextBox.InputBindings>
3         <KeyBinding
4             Key="Escape"
5             Command="{Binding Path=KeyPressedCommand}" />
6     </TextBox.InputBindings>
7 </TextBox>


注意还可以通过 KeyBinding.Modifiers 属性来识别组合键.

标签:组合键,Modifiers,为例,ViewModel,键盘,Esc,Wpf
来源: https://www.cnblogs.com/8u7tgyjire7890/p/16615805.html