Bukan yang saya tahu, tetapi bisa diperbaiki dengan skrip AutoHotkey . Misalnya, ini akan menggunakan Win+ nuntuk pergi ke latar belakang desktop berikutnya:
#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!
Tanda " n " Send n
hanya berlaku untuk bahasa Inggris Windows 7 ( latar belakang N ext desktop). Anda harus mengubahnya jika Windows 7 Anda tidak dalam bahasa Inggris agar cocok dengan tombol yang digarisbawahi.