sishentibu 发表于 2020-10-9 20:30

c语言使用SystemParametersInfo设置壁纸时鼠标卡顿的问题

      我用c写的设置壁纸的程序,壁纸也能成功设置。但在应用壁纸的时候,鼠标会卡顿一下。(与此同时,在播放的音乐却没听出卡顿的问题,cpu占用也不高。cpu是AMD 3100.)
      代码里感觉会引起鼠标卡顿的也就是 SystemParametersInfo 函数的应用了,但不知道怎么改。
      有大佬指点下该怎么改吗?或是换成别的什么函数?主要就是要解决这个鼠标卡顿的问题。
代码如下:

#include<stdio.h>
#include<stdlib.h>
#include<windows.h>

void YingYongTianChong(char* pic)
{
        HKEY hkey;
        RegOpenKeyEx(HKEY_CURRENT_USER, "Control Panel\\Desktop", 0, KEY_SET_VALUE, &hkey);
        RegSetValueEx(hkey, "WallpaperStyle", 0, REG_SZ, (const unsigned char*)"10", 2);
        RegSetValueEx(hkey, "WallPaper", 0, REG_SZ, (const unsigned char*)pic, sizeof(pic));
        Sleep(100);
        SystemParametersInfo(20, 0, pic, 1);
        RegCloseKey(hkey);
}

int main()
{
        char *picture = "e:\\test.png";
        YingYongTianChong(picture);
        return 0;
}
页: [1]
查看完整版本: c语言使用SystemParametersInfo设置壁纸时鼠标卡顿的问题