C# 控制桌面最大化区域

发布于 2024-09-30 03:29:28 字数 30 浏览 6 评论 0原文

有没有办法在 C# 中控制屏幕窗口的空间最大化

Is there a way to control what space of the screen windows can be maximized to, in C#

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

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

发布评论

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

评论(1

拍不死你 2024-10-07 03:29:28

要限制应用程序窗口的大小,请使用 Form.MaximizedBounds 属性。您可以使用 Screen 类来获取当前(或其他)屏幕的边界。

例如,这会将您的窗体最大化到主屏幕的左半部分:

public partial class MyForm : Form
{
    public MyForm()
    {
        InitializeComponent();

        // set width to 1/2 of screen
        Rectangle screenBounds = Screen.PrimaryScreen.Bounds;
        screenBounds.Width = screenBounds.Width / 2;            
        this.MaximizedBounds = screenBounds;

        // maximize
        this.WindowState = FormWindowState.Maximized;
    }
}

[编辑]

如果您要将窗口停靠到屏幕的一侧并限制其他应用程序的剩余桌面区域,
您可能有兴趣通过 Windows API 注册自定义 APPBAR。

检查以下链接:

To limit the size of your application's window, use the Form.MaximizedBounds property. You can use the Screen class to get the bounds of your current (or some other) screen.

For example, this will maximize your form to left half of the primary screen:

public partial class MyForm : Form
{
    public MyForm()
    {
        InitializeComponent();

        // set width to 1/2 of screen
        Rectangle screenBounds = Screen.PrimaryScreen.Bounds;
        screenBounds.Width = screenBounds.Width / 2;            
        this.MaximizedBounds = screenBounds;

        // maximize
        this.WindowState = FormWindowState.Maximized;
    }
}

[Edit]

If you want to dock your window to one side of the screen and limit the remaining desktop area for other applications,
you might be interested in registering a custom APPBAR through Windows API.

Check the following links:

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