共计 584 个字符,预计需要花费 2 分钟才能阅读完成。
Hide Desktop Icon[AutoHotKey]
/* Library:
* Hide Desktop Icon
* Description:
* Hide the desktop icon by double clicking the left mouse button
* Warnning:
* None.
* Version:
* v1.0.3
* Author:
* 泠音
*/
#IfWinActive ahk_class WorkerW ahk_exe Explorer.EXE
{
intInterval:=200
~LButton::If(A_PriorHotkey<> “~LBUtton” or A_TimeSincePriorHotkey>intInterval){
KeyWait, LButton
return
}
HideOrShowDesktopIcons()
return
}
HideOrShowDesktopIcons()
{
ControlGet, class, Hwnd,, SysListView321, ahk_class Progman
If class =
ControlGet, class, Hwnd,, SysListView321, ahk_class WorkerW
If DllCall(“IsWindowVisible”, UInt,class)
WinHide, ahk_id %class%
Else
WinShow, ahk_id %class%
}
正文完
发表至:无分类
2019-02-12