在 C#.Net 中,给定窗口句柄如何强制窗口全屏?

发布于 2024-07-29 08:51:27 字数 86 浏览 3 评论 0原文

我已经获得了进程主窗口的句柄,并且想强制执行该操作 窗口到全屏。 我正在使用 .Net Framework V2.0 SP1 在 c#.Net 中进行编程

I've obtained the handle to a processes Main Window and would like to force that
window to full screen. I'm programming in c#.Net with .Net framework V2.0 SP1

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

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

发布评论

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

评论(3

烟酉 2024-08-05 08:51:27

这里有一篇文章向您展示了如何执行此操作。 然而,对于大多数调用,它需要 P/Invoke 到 Windows API。

Here is an article that shows you how to do this. It requires P/Invoke into the Windows API for most of the calls, however.

‖放下 2024-08-05 08:51:27
    public void MaximizeForm(IntPtr handle)
    {
        Control c = Control.FromHandle(handle);
        Form c_form = c as Form;
        if (c_form != null)
        {
            if (c_form.InvokeRequired)
            {
                this.BeginInvoke(new MethodInvoker(delegate() { MaximizeForm(handle); }));
            }
            else
            {
                c_form.WindowState = FormWindowState.Maximized;
            }
        }
    }
    public void MaximizeForm(IntPtr handle)
    {
        Control c = Control.FromHandle(handle);
        Form c_form = c as Form;
        if (c_form != null)
        {
            if (c_form.InvokeRequired)
            {
                this.BeginInvoke(new MethodInvoker(delegate() { MaximizeForm(handle); }));
            }
            else
            {
                c_form.WindowState = FormWindowState.Maximized;
            }
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文