【问题标题】:AutoHotkey: Disable Ctrl+Shift (Windows 10 - keyboard layout switch)AutoHotkey:禁用 Ctrl+Shift(Windows 10 - 键盘布局切换)
【发布时间】:2019-09-13 19:51:40
【问题描述】:

如何使用 AutoHotkey 在 Windows 10 中禁用 Ctrl+Shift 热键(键盘布局切换)?

(但是我想保留以下所有组合:Ctrl+Shift+任何其他键)

我试过这个,但它没有阻止热键:

; Test.ahk
; Try disable Ctrl+Shift
+^::

编辑: 我找到了一种在没有 AHK 的较新 Windows 10 版本中禁用它的方法:
https://superuser.com/a/1322396
但我认为问题仍然存在。

【问题讨论】:

  • 在 Windows 10 上,转到设置->时间和语言->语言->键盘。单击链接“输入语言热键”并更改或删除“输入语言之间的键序列”
  • 要使用 AutoHotkey 禁用 Ctrl+Shift,请将热键 <^Shift::return ; do nothing "<^" means LCtrl添加到您的脚本中。

标签: autohotkey windows-10-desktop


【解决方案1】:

在你的执行提示中写下这个(使用 Window + r):

rundll32 Shell32.dll,Control_RunDLL input.dll,,{C07337D3-DB2C-4D0B-9A93-B722A6C106E2}{HOTKEYS}

它将直接向您显示面板,以便您可以禁用更改键序列按钮中的热键。

【讨论】:

    【解决方案2】:
    Click "Clock, Language, and Region" from the control panel
    Click "Language"
    Click "Advanced settings" in the right column
    Under "Switching input methods", click "Change language bar hot keys"
    Select "Between input languages" and click "Change Key Sequence"
    Disable/change the keyboard shortcut as you'd like
    

    【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2021-04-13
    • 2017-06-11
    • 2013-09-08
    • 1970-01-01
    • 2021-11-11
    • 2011-09-05
    • 1970-01-01
    • 2021-08-09
    相关资源
    最近更新 更多