gpt4 book ai didi

wpf - 我可以为 WPF 中的一系列键创建 KeyBinding 吗?

转载 作者:行者123 更新时间:2023-12-04 06:47:00 25 4
gpt4 key购买 nike

是否可以在 WPF 中为一系列按键定义键绑定(bind),例如 Visual Studio 中的快捷方式Ctrl + R, Ctrl + A 运行当前解决方案中的所有测试

据我所知,我只能使用该元素绑定(bind)单个组合键,例如 Ctrl + S。我可以使用它来绑定(bind)序列,还是必须手动处理按键才能执行此操作?

最佳答案

您需要创建自己的 InputGesture , 通过覆盖 Matches方法。

类似的东西:

public class MultiInputGesture : InputGesture
{
public MultiInputGesture()
{
Gestures = new InputGestureCollection();
}

public InputGestureCollection Gestures { get; private set; }

private int _currentMatchIndex = 0;

public override bool Matches(object targetElement, InputEventArgs inputEventArgs)
{
if (_currentMatchIndex < Gestures.Count)
{
if (Gestures[_currentMatchIndex].Matches(targetElement, inputEventArgs))
{
_currentMatchIndex++;
return (_currentMatchIndex == Gestures.Count);
}
}
_currentMatchIndex = 0;
return false;
}
}

它可能需要更多,比如忽略某些事件(例如 KeyDown 事件之间的 KeyUp 事件不应重置 _currentMatchIndex) , 但你明白了......

关于wpf - 我可以为 WPF 中的一系列键创建 KeyBinding 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3625859/

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