C# 控制桌面最大化区域
有没有办法在 C# 中控制屏幕窗口的空间最大化
Is there a way to control what space of the screen windows can be maximized to, in C#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法在 C# 中控制屏幕窗口的空间最大化
Is there a way to control what space of the screen windows can be maximized to, in C#
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
要限制应用程序窗口的大小,请使用 Form.MaximizedBounds 属性。您可以使用 Screen 类来获取当前(或其他)屏幕的边界。
例如,这会将您的窗体最大化到主屏幕的左半部分:
[编辑]
如果您要将窗口停靠到屏幕的一侧并限制其他应用程序的剩余桌面区域,
您可能有兴趣通过 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:
[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: