在 Windows 7 中映射 Win-q 以退出?

在 Windows 7 中映射 Win-q 以退出?

我想映射Win+q退出。

我如何在 Windows 7 中执行此操作?我可以在 Autohotkey 中执行此操作吗?如何操作?

答案1

假设您只想退出当前程序,这个 AutoHotKey 脚本应该可以解决问题:

;Activate on Windows key + q
#q::

;Simulate Alt + F4 being pressed
Send !{F4}

相关内容