KeyBinding - RelayCommand 位于 xaml.cs 中

发布于 2024-12-04 08:20:59 字数 560 浏览 0 评论 0原文

我将文本框绑定到 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>

I bind my textboxes to ViewModel class. But, button command (it's a RelayCommand, extended from ICommand) I bind to UsersView.xaml.cs. In UsersView.xaml.cs constructor I have this:

DataContext = UserVM;
btnAdd.DataContext = this;

This is how I bind button - it works.

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

Now, I want to add KeyGesture for that button but I can't set DataContext for InputBindings and compiler can't find this Add command in UsersVM class.

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤独患者 2024-12-11 08:20:59

我在窗口上有这个,这是我使用的代码...

<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">

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

<Window.InputBindings>

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

</Window.InputBindings>

AddPersonCommand 是我的 ViewModel 中的 ICommand。

I had this on a Window and this is the code I used...

<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">

Notice that I set the x.Name of the Window. Then in my KeyBinding, I did this...

<Window.InputBindings>

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

</Window.InputBindings>

The AddPersonCommand is my ICommand from my ViewModel.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文