0 在Windows 10中,有一个Win + K快捷方式可以启动“连接到无线显示和音频设备”侧边栏应用程序。我想删除此快捷方式,因为我喜欢使用Win + K作为使用我在多台计算机上使用的AutoHotKey脚本启动应用程序的快捷方式。 windows-10 keyboard-shortcuts — Matt Casto source
1 只需覆盖AHK中的快捷方式: #k::msgbox Hello 它优先于内置的Windows快捷方式。对我来说,上面的工作。 (我正在运行AHK,即作为管理员。) — miroxlav source 这有效!根据 autohotkey.com/docs/KeyList.htm 'LWin'和'RWin'是左右窗口键。我错过了#键可以是Windows键。 — Matt Casto