c# – KeyBinding – RelayCommand位于xaml.cs中

我将我的文本框绑定到ViewModel类.但是,按钮命令(它是一个RelayCommand,从ICommand扩展)我绑定到UsersView.xaml.cs.在UsersView.xaml.cs构造函数中,我有:

DataContext = UserVM;
btnAdd.DataContext = this;

这是我绑定按钮的方式 – 它的工作原理.

<Button Command="{Binding Add}" Content="Add user" />

现在,我想为该按钮添加KeyGesture,但我无法为InputBindings设置DataContext,并且编译器无法在UsersVM类中找到此Add命令.

<UsersView.InputBindings>
    <KeyBinding Key="F10" Command="{Binding Add}" />
</UsersView.InputBindings>

最佳答案 我在一个窗口上有这个,这是我用过的代码……

<Window
   x:Class="MVVMExample.MainWindow"
   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
   xmlns:myViewModels="clr-namespace:MVVMExample"
   Title="MainWindow"
   x:Name="MyMainWindow"
   Height="350"
   Width="525">

请注意,我设置了Window的x.Name.然后在我的KeyBinding中,我这样做了……

<Window.InputBindings>

    <KeyBinding
        Key="F10"
        Command="{Binding ElementName=MyMainWindow, Path=DataContext.AddPersonCommand}" />

</Window.InputBindings>

AddPersonCommand是我的ViewModel的ICommand.

点赞