是否有用于更改桌面背景的 Windows 7 键盘快捷键?

ahs*_*ele 11 windows-7 keyboard-shortcuts desktop-customization

在Windows 7 中添加了所有新的键盘快捷键后,我想知道在主题设置为幻灯片放映时是否添加了一个快捷方式来更改桌面背景。

我想执行Next desktop background在右键单击已设置为幻灯片放映的桌面时提示用户输入命令

Sna*_*ark 17

我不知道,但它可以通过AutoHotkey 脚本修复。例如,这将使用Win+n转到下一个桌面背景:

#n::                             ; use the Windows+n hotkey
WinActivate, ahk_class Progman   ; activate the Desktop
MouseGetPos, xpos, ypos          ; get current mouse position
Click 0,0                        ; click in the corner of the desktop, to unselect any selected icon
Send +{F10}                      ; send Shift+F10, the shortcut for right-click
Send n                           ; send "n", the key for "next desktop background"
Click %xpos%, %ypos%, 0          ; put the mouse back at its previous position
return                           ; done!
Run Code Online (Sandbox Code Playgroud)

该“ ñ ”在Send n只适用于英语Windows 7(ñ分机桌面背景)。如果您的 Windows 7 不是英文以匹配带下划线的键,则您必须更改它。


小智 8

我找到了一种更简单的方法来更改您的桌面背景:

  1. 转到您的桌面 ( Windows Key+ D)
  2. 按键盘上的“菜单”键(打开与鼠标右键菜单相同的菜单)+“n”键...

结果相同 - 2 个按钮,桌面已更改。