ผมขอแนะนำให้ใช้AutoHotkey
สคริปต์ตัวอย่างที่ไม่ตรงกับสิ่งที่คุณถามถูกจัดให้อยู่ในคำตอบสำหรับคำถามอื่น
นี่คือรหัสของสคริปต์:
#!Up::CenterActiveWindow() ; if win+alt+↑ is pressed
CenterActiveWindow()
{
; Get the window handle from de active window.
winHandle := WinExist("A")
VarSetCapacity(monitorInfo, 40)
NumPut(40, monitorInfo)
; Get the current monitor from the active window handle.
monitorHandle := DllCall("MonitorFromWindow", "uint", winHandle, "uint", 0x2)
DllCall("GetMonitorInfo", "uint", monitorHandle, "uint", &monitorInfo)
; Get WorkArea bounding coordinates of the current monitor.
A_Left := NumGet(monitorInfo, 20, "Int")
A_Top := NumGet(monitorInfo, 24, "Int")
A_Right := NumGet(monitorInfo, 28, "Int")
A_Bottom := NumGet(monitorInfo, 32, "Int")
; Calculate window coordinates.
winW := (A_Right - A_Left) * 0.5 ; Change the factor here to your desired width.
winH := A_Bottom
winX := A_Left + (winW / 2)
winY := A_Top
WinMove, A,, winX, winY, winW, winH
}
ฉันทำการปรับเล็กน้อยเพื่อให้ส่วนล่างของหน้าต่างไม่ไปอยู่ใต้แถบงานและเปลี่ยนwindowWidth
จาก 0.7 เป็น 0.5
แก้ไข : ตอนนี้ทำงานกับจอภาพหลายจอและใช้พื้นที่ทำงานสำหรับค่าสูงสุดและล่าง
ในหมายเหตุด้าน WinSplit Revolution ได้ถูกยกเลิกและแทนที่ด้วยแอพ MaxTo ที่จ่ายเงิน
นอกจากจะมีประสิทธิภาพมากและครอบคลุมกรณีการใช้งานมากขึ้น AutoHotkey ยังเป็นฟรีและโอเพ่นซอร์ส