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

Ala*_*inD 12 taskbar 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

har*_*ymc 10

可以使用免费应用程序7+ Taskbar Tweaker删除显示桌面切片

使用Chocolatey安装:choco install 7-taskbar-tweaker

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

在此处输入图片说明

  • 从理论上讲,这一切都是在更改某些注册表值。知道手动更改什么真的很好,这样我们就不必运行整个应用程序来执行此操作 (5认同)

Zer*_*ro3 6

受到 ChrisB 回答的启发,这是一个隐藏按钮的AutoHotkey脚本:

Control, Hide, , TrayShowDesktopButtonWClass1, ahk_class Shell_TrayWnd
Run Code Online (Sandbox Code Playgroud)

如果使用 AutoHotkey v2,则语法为:

ControlHide("TrayShowDesktopButtonWClass1", "ahk_class Shell_TrayWnd")
Run Code Online (Sandbox Code Playgroud)

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