我想使用 C# 将当前屏幕保护程序更改为自定义屏幕保护程序(我之前在 Visual Studio 中将其作为资源加载)。那怎么可能呢?我已经在 Google 和 SO 上寻找它,但它都在谈论“如何创建屏幕保护程序”,而不是“如何更改屏幕保护程序”。如果可能,它应该可以在 WinXP、Vista 和 7 上运行。
问问题
5021 次
2 回答
6
我将用对我有用的代码来回答我的问题:
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
(不是真正面向对象,但可以解决问题)
于 2011-12-12T09:49:16.103 回答
1
这是安装新系统时windows执行的命令
rundll32.exe desk.cpl,InstallScreenSaver %l
于 2011-12-05T10:11:27.297 回答