我想使用C#更改当前的屏幕保护程序(我以前在Visual Studio中作为资源加载)。怎么可能这样呢?我在Google和SO上寻找它,但它都讨论了“如何创建屏幕保护程序”,而不是“如何更改屏幕保护程序”。如果可能,它应该适用于WinXP,Vista和7。
答案 0 :(得分:5)
我会用一段对我有用的代码回答我的问题:
public sealed class Screensaver
{
Screensaver() { }
const int SPI_SETSCREENSAVEACTIVE = 0x0011;
[DllImport("user32", CharSet=CharSet.Auto)]
unsafe public static extern short SystemParametersInfo (int uiAction, int uiParam, int* pvParam, int fWinIni);
public static void Set(string path)
{
try
{
RegistryKey oKey = Registry.CurrentUser.OpenSubKey("Control Panel",
true);
oKey = oKey.OpenSubKey("desktop", true);
oKey.SetValue("SCRNSAVE.EXE", path);
oKey.SetValue("ScreenSaveActive", "1");
unsafe
{
int nX = 1;
SystemParametersInfo(
SPI_SETSCREENSAVEACTIVE,
0,
&nX,
0
);
}
}
catch (Exception exc)
{
System.Windows.Forms.MessageBox.Show(exc.ToString());
}
}
}
然后,从我的应用程序中调用它时:
static string ResourcePath(string resource)
{
return Application.StartupPath + "\\Resources\\" + resource;
}
Program.Screensaver.Set(Program.ResourcePath("svr1.scr"));
我读到某个地方我应该写一个不超过8个字符的名字(有点奇怪,但XP就是这样),所以我的屏幕保护程序叫svr1.scr
(不是真的面向对象,但是诀窍)
答案 1 :(得分:0)
这是Windows在安装新程序时执行的命令
rundll32.exe desk.cpl,InstallScreenSaver %l