删除 Windows 10 上时钟旁边的“显示桌面”按钮

删除 Windows 10 上时钟旁边的“显示桌面”按钮

使用 Windows 10 v1803。有什么方法可以去除Show desktop时钟旁边的薄片吗?它只有 5 个像素宽(包括细灰色边框),但它很烦人!

Windows 10 显示桌面切片

左侧的图像是切片本身,右侧的图像是右键单击切片时看到的图像。到目前为止,我尝试过的方法:

  • 控制面板 > 系统 > 高级系统设置 > 性能 > 设置。Enable Peek处于关闭状态。
  • 控制面板 > 任务栏和导航Use Peek to preview the desktop when you move your mouse to the Show desktop button at the end of the taskbarOff

答案1

可以使用免费应用程序删除显示桌面切片 7+ 任务栏调整器

安装巧克力味choco install 7-taskbar-tweaker

使用名为的调整Hide the “show desktop” button

在此处输入图片描述

答案2

受到 ChrisB 回答的启发,这里是自动热键隐藏按钮的脚本:

Control, Hide, , TrayShowDesktopButtonWClass1, ahk_class Shell_TrayWnd

如果使用 AutoHotkey v2,语法是:

ControlHide("TrayShowDesktopButtonWClass1", "ahk_class Shell_TrayWnd")

(使用方法:安装 AutoHotkey,将其保存为.ahk文件并双击。您还可以在开始菜单中的启动文件夹中添加快捷方式,以便它在登录时自动运行。)

答案3

我真的不喜欢那些预编译的闭源工具,所以这里有一个简单的自动识别您可以将其复制到启动文件夹中:

$hwnd = WinGetHandle("[CLASS:Shell_TrayWnd]", "")
ControlHide($hwnd, "", "TrayShowDesktopButtonWClass1")

相关内容