开发者

How to resume Windows 7 slideshow after restoring default wallpaper

开发者 https://www.devze.com 2022-12-12 22:25 出处:网络
I use SystemParametersInfo to remove the Desktop wallpaper. SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, _T(\"\"), SPIF_SENDCHANGE)

I use SystemParametersInfo to remove the Desktop wallpaper.

SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, _T(""), SPIF_SENDCHANGE)   

later I restore it with the same method.

SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, NULL, SPIF_SENDCHANGE)
开发者_StackOverflow社区

That worked fine for all Windows versions including Vista. But with Windows 7 I found out that the desktop wallpaper slideshow will not be restored after setting the default wallpaper. Windows 7 displays the last shown image only.

How can I restore the desktop wallpaper and resume the slideshow ?

0

精彩评论

暂无评论...
验证码 换一张
取 消