Могу ли я изменить поведение / размеры окна дока WIN-KEY (вверх / вниз / влево / вправо) по умолчанию?
2198
kingdango
В Windows 7 я могу удерживать клавишу WINDOWS и нажимать клавиши со стрелками (влево, вправо, вверх, вниз), и текущее активное окно будет пристыковано к левой половине экрана, правой половине экрана, развернуто и восстановлено (соответственно).
Можно ли добавить дополнительное поведение (например, левые две трети, правые третьи и т. Д.)? Или, возможно, можно изменить ширину этих мест, чтобы я мог установить «левую половину» на самом деле около 33% экрана?
Посмотрите ответы здесь: http://superuser.com/questions/83470/in-windows-7-is-there-a-way-to-snap-a-window-to-a-quarter-of- заместитель экрана вместо
ravanbak 11 лет назад
1
The only way that I know of is with DisplayFusion. It allows you to create hotkeys and titlebar buttons for just about anything. It's a great free window manager. I use it on all of my computers.
0
Luiz Angelo
I don't think you can change the default configuration.
The default config uses the Windows Keys + Numkeys to move the windows. Just a little reminder: the default config uses the numpad 0 as a modifier - without the use of the Windows Key. So, if you try to type "01", it will interfere with your current screen.
0
Codism
I wrote some AutoHotKey scripts, and one of them is to move windows by keyboard. You can check them out at rwintools.
If you don't want all the other tools in my collection, you can just get the script for moving windows (move-window.ahk) and its dependency (common.ahi).
The following are keyboard hot keys to move the current active window:
Win+Arrow: move the current window, using all the visible windows as "stop sign"
Win+Ctrl+Arrow: dock
Win+Shift+Arrow: move the left-upper corner of the current window, using all the visible windows as "stop sign"
Win+Alt+Arrow: move the right-bottom corner of the current window, using all the visible windows as "stop sign"
Win+Home: move the current window to the left-upper corner of the primary display.