.NET/WinForms:在特定屏幕上最大化窗口
我有一个双显示器设置,我希望我的 C# 应用程序在特定屏幕上最大化其窗口。
我怎样才能做到这一点?
谢谢!
i have a dual monitor setup and i want my c# application to maximize its window on a specific Screen.
how can i do that?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是我的一个项目中类似范围的屏幕管理代码:
This is a screen management code for a similar scope in one of my projects:
您使用 Screen 类查找第二个显示器链接< /a>
代码在此处找到
You use the Screen class to find the 2nd monitor link
Code found here
您可以通过在最大化之前将窗口一直向右或向左移动来实现此目的。这应该会导致窗口在最大化时最大化到该屏幕。
You might get this to work by moving the window all the way right or left before maximizing. This should cause the window to maximize to that screen when it does maximize.