从C#Windows窗体启动系统屏幕保护程序

时间:2008-11-06 05:39:36

标签: c# screensaver

希望这是一个简单的,但任何人都可以提供一些简单的c#代码来启动当前配置的屏幕保护程序吗?

1 个答案:

答案 0 :(得分:9)

这是一个很好的网站,展示了如何使用屏幕保护程序的各个方面。请参阅最后的注释,以获取启动屏幕保护程序的代码。

http://www.codeproject.com/KB/cs/ScreenSaverControl.aspx

    [DllImport("user32.dll", EntryPoint = "GetDesktopWindow")]
    private static extern IntPtr GetDesktopWindow();

    [DllImport("user32.dll")]
    private static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, int wParam, int lParam);

    //...

    private const int SC_SCREENSAVE = 0xF140;
    private const int WM_SYSCOMMAND = 0x0112;

    //...

    public static void SetScreenSaverRunning()
    {
    SendMessage

(GetDesktopWindow(), WM_SYSCOMMAND, SC_SCREENSAVE, 0);
}