将按下的任何键绑定到VM WPF中的命令
本文关键字:WPF VM 命令 绑定 任何键 | 更新日期: 2023-09-27 17:57:37
我正在尝试将按下的任何键盘键绑定到ViewModel
中的命令。
我知道我可以绑定一个特定的密钥,使用:
<Window.InputBindings>
<KeyBinding Command="{Binding ChangeIdCommand}" Key="B"/>
</Window.InputBindings>
我可以将所有按键绑定到ChangeIdCommand
而不必手动键入所有按键吗?
在窗口定义后尝试此操作:
<Window x:Class="wpfApplication.MainWindow"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" ...>
<i:Interaction.Triggers>
<i:EventTrigger EventName="KeyDown">
<i:InvokeCommandAction Command="{Binding ChangeIdCommand}" />
</i:EventTrigger>
</i:Interaction.Triggers>
找到答案:
<Interactivity:Interaction.Triggers>
<Interactivity:EventTrigger EventName="PreviewKeyDown" >
<command:EventToCommand Command="{Binding ChangeIdCommand}" PassEventArgsToCommand="True" />
</Interactivity:EventTrigger>
</Interactivity:Interaction.Triggers>