美文网首页
【AHK】AutoHotkey V2 显示/隐藏桌面图标

【AHK】AutoHotkey V2 显示/隐藏桌面图标

作者: Mory桑 | 来源:发表于2023-06-25 17:07 被阅读0次
SwitchDesktopIcons()
{
    HWND := ControlGetHwnd("SysListView321", "ahk_class WorkerW")
 
    if (DllCall("IsWindowVisible", "UInt", HWND) == 0){
        WinShow("ahk_id" HWND)
    } else {
        WinHide("ahk_id" HWND)
    }
}

Windows11 22H2 可以正常使用

相关文章

网友评论

      本文标题:【AHK】AutoHotkey V2 显示/隐藏桌面图标

      本文链接:https://www.haomeiwen.com/subject/utniydtx.html