现在电脑屏幕都比较大,可以用热键将当前的窗口调整到左 / 右半屏显示
;-- 按 Ctrl + Alt + Left / Right 热键即可将当前的窗口调整到左 / 右半屏显示
^!Left::
^!Right::
SysGet, p, MonitorWorkArea
x:=pLeft, y:=pTop, w:=pRight, h:=pBottom
IfWinExist, A
{
WinRestore
WinMove,,, x+w//2*(!!InStr(A_ThisLabel,"Right")), y, w//2, h
}
return