如何在 Windows 窗体中运行屏幕保护程序作为其背景?

发布于 2024-08-12 02:17:33 字数 153 浏览 3 评论 0原文

如何在 Windows 窗体中运行屏幕保护程序作为其背景? 用户还可以在屏幕保护程序运行时与表单控件进行交互。

[为什么会这样?] 我们有一个案例,需要在用户时运行 Windows Bubbles 屏幕保护程序 可以继续与表单控件交互吗?

How does one run screensaver within Windows Form as background for it?
User also can interact with form controls while screensaver running.

[Why this?]
We have a case which we need to run Windows Bubbles screensaver while user
can continue interacting with form controls?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海螺姑娘 2024-08-19 02:17:33

您可以使用以下代码:

    private void ShowScreenSaver(Control displayControl)
    {
        using (RegistryKey desktopKey = Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop"))
        {
            if (desktopKey != null)
            {
                string screenSaverExe = desktopKey.GetValue("SCRNSAVE.EXE") as string;
                if (!string.IsNullOrEmpty(screenSaverExe))
                {
                    Process p = Process.Start(screenSaverExe, "/P " + displayControl.Handle);
                    p.WaitForInputIdle();
                    IntPtr hwnd = p.MainWindowHandle;
                    if (hwnd != IntPtr.Zero)
                    {
                        SetParent(hwnd, displayControl.Handle);
                        Rectangle r = displayControl.ClientRectangle;
                        MoveWindow(hwnd, r.Left, r.Top, r.Width, r.Height, true);
                    }
                }
            }
        }
    }

    [DllImport("user32.dll")]
    static extern IntPtr SetParent(IntPtr hwndChild, IntPtr hwndParent);

    [DllImport("user32.dll")]
    static extern bool MoveWindow(IntPtr hwnd, int x, int y, int width, int height, bool repaint);

参数是要在其中显示屏幕保护程序预览的窗体或控件。请注意,屏幕保护程序在调整大小之前会短暂地全屏显示。

You can use the following code :

    private void ShowScreenSaver(Control displayControl)
    {
        using (RegistryKey desktopKey = Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop"))
        {
            if (desktopKey != null)
            {
                string screenSaverExe = desktopKey.GetValue("SCRNSAVE.EXE") as string;
                if (!string.IsNullOrEmpty(screenSaverExe))
                {
                    Process p = Process.Start(screenSaverExe, "/P " + displayControl.Handle);
                    p.WaitForInputIdle();
                    IntPtr hwnd = p.MainWindowHandle;
                    if (hwnd != IntPtr.Zero)
                    {
                        SetParent(hwnd, displayControl.Handle);
                        Rectangle r = displayControl.ClientRectangle;
                        MoveWindow(hwnd, r.Left, r.Top, r.Width, r.Height, true);
                    }
                }
            }
        }
    }

    [DllImport("user32.dll")]
    static extern IntPtr SetParent(IntPtr hwndChild, IntPtr hwndParent);

    [DllImport("user32.dll")]
    static extern bool MoveWindow(IntPtr hwnd, int x, int y, int width, int height, bool repaint);

The parameter is the form or control in which you want to display the screensaver preview. Note that the screensaver will briefly appear in full screen before it is resized.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文