gpt4 book ai didi

C# - 如何使用 SendKeys.Send 通过 SHIFT 键发送小写字母?

转载 作者:太空狗 更新时间:2023-10-30 01:26:13 26 4
gpt4 key购买 nike

我正在使用 this我的项目的键盘 Hook 。我无法在按下 SHIFT 修改键的情况下使用 SendKeys.Send() 发送小写字母。我的应用程序需要(例如)如果用户按下 K 按钮 "a" 并且如果他按下 SHIFT+K , "b" 应该被发送。代码是:

void gkh_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.K)
{
if (Control.ModifierKeys == Keys.Shift)
SendKeys.Send("b");
else
SendKeys.Send("a");
}
e.Handled == true;
}

但它发送"B"(大写字母)而不是"b",即SHIFT键改变了发送的击键"b"大写。即使在将 Keys.Shift 添加到 Hook 之后,也会发生这种情况。

我尝试了很多方法,包括使用 e.SupressKeyPressSendKeys("b".toLower()) 以及将上面的代码放在 KeyUp 事件中,但在 vein 中。

请帮助我,我很沮丧,我的应用程序开发在这一点上受到打击。

最佳答案

您在 Shift 键仍处于按下状态时发送键,这导致它们被大写。
您需要找到一种方法来取消 Shift 键和 K 键的按下。

您正在使用的全局钩子(Hook)示例有点简单;它应该报告按住了哪些修改键。不幸的是,该功能似乎尚未实现。

为什么首先需要使用键盘钩子(Hook)?您真的需要处理当您的表单没有获得焦点时发生的关键事件吗?如果是这样,你到底为什么要使用 SendKey ?您如何知道当前事件的应用程序将如何处理您发送的按键操作?

这看起来像是在重写表单的 ProcessCmdKey method 时可以更好地处理的事情, 反而。例如:

  protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
if (keyData == (Keys.K | Keys.Shift))
{
SendKeys.Send("b");
return true; // indicate that you handled the key
}
else if (keyData == Keys.K)
{
SendKeys.Send("a");
return true; // indicate that you handled the key
}

// call the base class to handle the key
return base.ProcessCmdKey(ref msg, keyData);
}

编辑:您的评论表明您实际上确实需要处理在表单没有焦点时发生的关键事件。假设您需要处理的不仅仅是 K 键,您将需要使用全局 Hook 来完成此操作。

正如我之前提到的,问题是当您使用 SendInput 发送 B 键时,用户仍然按住 Shift 键| ,这导致它注册为大写字母 B 而不是小写字母。那么解决方案就很明显了:您需要找到一种方法来取消 Shift 键按下,这样它就不会被操作系统处理。当然,如果您吃掉了按键事件,您还需要想出一种跟踪它的方法,以便您的应用程序仍然知道它何时被按下并可以采取相应的行动。

快速搜索显示 a similar question关于 Windows logo 已经被询问和回答 键。

特别是,您需要编写处理 KeyDown 的代码像这样由你的全局钩子(Hook)引发的事件(至少,这段代码适用于我编写的全局钩子(Hook)类;它也应该适用于你的,但我还没有实际测试过):

// Private flag to hold the state of the Shift key even though we eat it
private bool _shiftPressed = false;

private void gkh_KeyDown(object sender, KeyEventArgs e)
{
// See if the user has pressed the Shift key
// (the global hook detects individual keys, so we need to check both)
if ((e.KeyCode == Keys.LShiftKey) || (e.KeyCode == Keys.RShiftKey))
{
// Set the flag
_shiftPressed = true;

// Eat this key event
// (to prevent it from being processed by the OS)
e.Handled = true;
}


// See if the user has pressed the K key
if (e.KeyCode == Keys.K)
{
// See if they pressed the Shift key by checking our flag
if (_shiftPressed)
{
// Clear the flag
_shiftPressed = false;

// Send a lowercase letter B
SendKeys.Send("b");
}
else
{
// Shift was not pressed, so send a lowercase letter A
SendKeys.Send("a");
}

// Eat this key event
e.Handled = true;
}
}

关于C# - 如何使用 SendKeys.Send 通过 SHIFT 键发送小写字母?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5443224/

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