gpt4 book ai didi

c# - 箭头键绑定(bind)不触发

转载 作者:行者123 更新时间:2023-12-03 10:31:58 24 4
gpt4 key购买 nike

我正在尝试将四个箭头键绑定(bind)到我的 ViewModel 中的命令。 ,但他们不工作。我有一个 ContentControlWindowInputBindings像这样:

<ContentControl.InputBindings>
<KeyBinding Command="{Binding EndCmd}" Key="Esc" />
<KeyBinding Command="{Binding PanUpCmd}" Key="Up" />
<KeyBinding Command="{Binding PanDownCmd}" Key="Down" />
<KeyBinding Command="{Binding PanLeftCmd}" Key="Left" />
<KeyBinding Command="{Binding PanRightCmd}" Key="Right" />
</ContentControl.InputBindings>

在我的 ViewModel :
public RelayCommand EndCmd { get; set; }
public RelayCommand PanUpCmd { get; set; }
public RelayCommand PanDownCmd { get; set; }
public RelayCommand PanLeftCmd { get; set; }
public RelayCommand PanRightCmd { get; set; }

public MainViewModel()
{
EndCmd = new RelayCommand(End);
PanUpCmd = new RelayCommand(PanUp);
PanDownCmd = new RelayCommand(PanDown);
PanLeftCmd = new RelayCommand(PanLeft);
PanRightCmd = new RelayCommand(PanRight);
}

//functions that the commands call here

现在,Escape 键可以正常工作,但四个箭头键不能。为什么是这样?它们的设置完全相同。我想也许这与 DataContext 有关所以我把 KeyBinding窗口中的小号 s InputBindings`,但这是同样的问题。

编辑:我已经测试了键盘上的每个键。除四个箭头键外,每个键都能正常触发。我检查了 ContentContentControl正在吞噬事件,但事实并非如此。事实上, Control那是 Content有它自己的 keydown 事件,它也永远不会被调用,previewkeydown 也不会被箭头键调用。

最佳答案

我复制了你的代码,它似乎工作正常。

我认为这在您的情况下不起作用的唯一原因(尤其是如果 Esc 有效,但其他键无效)是您在 ContentControl 中使用的任何内容还包含方向键的输入绑定(bind)。

在这种情况下,内容中的绑定(bind)将覆盖您为 ContentControl 设置的绑定(bind)。本身。

关于c# - 箭头键绑定(bind)不触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55710443/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com