「快捷键切换 Windows 10 虚拟桌面[AHK]」的评论 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/ 分享免费、小巧、实用、有趣、绿色的软件 Tue, 07 Apr 2020 13:54:27 +0000 hourly 1 https://wordpress.org/?v=6.8.1 评论者:女澡堂的搓澡师傅 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/comment-page-1/#comment-466254 Tue, 07 Apr 2020 13:54:27 +0000 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/#comment-466254 有个更懒的,屏幕边缘热区切换虚拟桌面:

;这个是设置鼠标坐标的相对位置,本例是相对雨整个桌面
CoordMode, Mouse ,Screen

#Persistent
;这个设置了获取鼠标信息的频率,数值越小边缘热区越灵敏
SetTimer, WatchCursor, 300
return

WatchCursor:
GetKeyState, state, LButton
MouseGetPos, xpos, ypos, id, control
;若要重设边缘热区的范围请,把下一行的 ; 号去掉,就会在鼠标位置显示鼠标的坐标,根据坐标修改以下数值
;ToolTip,x:%xpos% y:%ypos% state:%state%
if(state = “U” ){
;y方向的范围
if(ypos > 250 and ypos < 700){
;x方向的范围
if(xpos = 1919){
Send ^#{Right}
MouseMove, 1900, ypos
}else if(xpos = 0){
Send ^#{Left}
MouseMove, 20, ypos
}
;显示所有虚拟桌面的热区
}else if(xpos = 0 and ypos = 0){
Send #{Tab}
MouseMove, 10, 10
}
}
return

]]>
评论者:cheetah747 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/comment-page-1/#comment-455208 Mon, 14 Oct 2019 06:41:04 +0000 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/#comment-455208 回复给 panxuan

跟手分开没有关系呀,这样是单手操作,一只左手大拇指按住左Win键,中指去按上排的数字键就行了。

]]>
评论者:panxuan http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/comment-page-1/#comment-454860 Thu, 10 Oct 2019 05:03:13 +0000 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/#comment-454860 回复给 树而雪与

最好还是选择了你的方案!

]]>
评论者:panxuan http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/comment-page-1/#comment-454806 Wed, 09 Oct 2019 18:08:51 +0000 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/#comment-454806 回复给 cheetah747

方法不错,但限制多,而且手分开的话,不如原来ctrl+win+箭头 容易快速上手

]]>
评论者:p总 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/comment-page-1/#comment-436155 Tue, 30 Apr 2019 08:05:55 +0000 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/#comment-436155 你他娘的真是个天才。

]]>
评论者:爱否啊 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/comment-page-1/#comment-428824 Thu, 29 Nov 2018 13:41:42 +0000 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/#comment-428824 求ahk连发源码,离不开电脑制作的那个老dnf连发

]]>
评论者:忆缘浮生 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/comment-page-1/#comment-413569 Mon, 05 Feb 2018 06:59:31 +0000 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/#comment-413569 回复给 AtomicEnergy

win键怎么修改成其他按键?

]]>
评论者:cheetah747 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/comment-page-1/#comment-400290 Sun, 19 Mar 2017 01:56:42 +0000 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/#comment-400290 其实还有个挺方便的方法:把两个单例程序固定在任务栏,比如任务管理器和notepad++,分别固定在第1、2个位置上,然后把任务管理器打开放在第1桌面,把notepad++打开放到第二桌面,然后按Win键+1就会切换第1桌面,按Win键+2就会切换到2桌面,这是利用Win键+数字键快速启动对应任务栏程序的特性,前提是程序必须是全局单例的,否则只会在当前桌面打开新程序而已。

]]>
评论者:ipcjs http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/comment-page-1/#comment-395784 Tue, 11 Oct 2016 12:33:51 +0000 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/#comment-395784 回复给 AtomicEnergy

send ^#{Right}发送按键有延迟,快速切换时可能变成^{WheelDown},使用SendInput ^#{Right}可解决。

]]>
评论者:ipcjs http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/comment-page-1/#comment-395783 Tue, 11 Oct 2016 12:29:04 +0000 http://inloveinparis.com/shortcut-keys-to-switch-desktops-for-windows10/#comment-395783 回复给 AtomicEnergy

send ^#{Right}在快速切换的时候貌似会触发^{WheelDown},改成SendInput ^#{Right},就可以了

]]>