博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Hide Desktop Icon[AutoHotKey]
阅读量:6623 次
发布时间:2019-06-25

本文共 932 字,大约阅读时间需要 3 分钟。

Hide Desktop Icon[AutoHotKey]

Update

/* Library: *      Hide Desktop Icon * Description: *      Hide the desktop icon by double clicking the right mouse button * Warnning: *      None. * Version: *      v1.0.5 * Author: *      泠音 */intInterval:=300~RButton::    If(A_PriorHotkey <> "~RBUtton" or A_TimeSincePriorHotkey > intInterval){        KeyWait, RButton        return    }If(check()){    HideOrShowDesktopIcons()    Sleep, 40    Send, {Esc}    return}check(){    MouseGetPos,X,Y,ID,CLASS    return CLASS=="SysListView321"         or CLASS=="SHELLDLL_DefView1"        or CLASS==""        or WinExist("ahk_class WorkerW" . " ahk_id " . CLASS)}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%}

转载地址:http://hxjpo.baihongyu.com/

你可能感兴趣的文章
【常用工具】常用工具收集
查看>>
Tax
查看>>
网站页面多出&65279出现空白行的原因及解决方法
查看>>
第二阶段团队冲刺站立会议06
查看>>
html
查看>>
本地wampserver如何配置伪静态
查看>>
操作系统面试
查看>>
【转载】支持向量机SVM(一)
查看>>
C#串口通信实例
查看>>
小程序数据返回时刷新当前页面数据
查看>>
MySQL数据故障时备份与恢复
查看>>
Nlopt优化函数库,用法举例
查看>>
海思 core 电压动态调整
查看>>
New Concept English three (58)
查看>>
BEC listen and translation exercise 34
查看>>
spark-Day2
查看>>
前端学算法之排序算法
查看>>
HA配置
查看>>
航院5538:House Building
查看>>
轻院1067: 有问题的里程表
查看>>