请教双屏幕操作 Topic is solved

遇到了问题?请先进行搜索(中文和英文),然后在此提问

Moderators: tmplinshi, arcticir

g1879

请教双屏幕操作  Topic is solved

Post by g1879 » 17 Feb 2021, 09:34

请教大佬们,我有两个屏幕,如何设置快捷键让当前窗口移到另一个屏幕并最大化?
我是新手,希望讲得稍微详细点,感谢。
llinfeng
Posts: 86
Joined: 08 Dec 2016, 21:54
Contact:

Re: 请教双屏幕操作

Post by llinfeng » 24 Feb 2021, 11:23

新手的话,推荐不要入坑AHK。理由:你有可能遇到如下问题——电脑重启后希望能自动打开AHK;有Admin Privilage的窗口,不能用过AHK控制;窗口移动过去之后,有时候“不显示”(其实是其他窗口碰巧被保留做“总在最上面”)...

只是移动到另一个屏幕并最大化,DisplayFusion有对应的Function,叫“Move Window to Next Monitor and Maximize”。
llinfeng
Posts: 86
Joined: 08 Dec 2016, 21:54
Contact:

Re: 请教双屏幕操作

Post by llinfeng » 24 Feb 2021, 16:33

我发现Windows自带的快捷键,Shift+Win+left,就能完美实现。用AHK也可以自己映射成其他的快捷键,比如Ctrl+Win+Left,如下(我的Ctrl键在Capslock的位置,这仨按起来更顺手一点儿)

Code: Select all

#SingleInstance  ; Allow only one instance of this script to be running.
#Persistent ; To stop the script from exiting.
return

; 这里是正经的映射部分;前面,在return前面,是设置环境的
^#h:: send #+{left}
^#l:: send #+{right}
DisplayFusion移动窗口的功能,完全没啥用了。【不过它还有个记住显示屏“profile”的功能,挺实用的。】
Post Reply

Return to “请求帮助”