全屏模式下阻止窗口按钮

全屏模式下阻止窗口按钮

我使用 Windows 10 Pro。我喜欢玩电脑游戏,我讨厌不小心按下 Windows 按钮时被打断。我有一个 Autohotkey 脚本,如下所示:

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

LWin::Return
RWin::Return

当我在正常模式下使用应用程序时,它可以正常工作,但当我以全屏模式开始游戏时,Windows 按钮又可以正常工作(我不想要)。怎么会这样?我还使用了一个名为 WinKill v0.3 的软件,并注意到了同样的行为(除了在全屏模式下玩游戏时,其他时候都可以正常工作)。

编辑:autohotkey 脚本直到最近才真正起作用,但我不知道会发生什么变化。

相关内容