在双屏环境中运行应用程序
可能的重复:
如何查找C# 中应用程序在哪个屏幕上运行
有什么想法可以检查当前应用程序是否在主屏幕上运行或不在双屏环境中运行吗? 我正在使用 VSTS 2008 + C# + .Net 3.5。 我想在我的应用程序中添加代码来检测当前应用程序是否在主屏幕上运行。
提前致谢, 乔治
Possible Duplicate:
How do I find what screen the application is running on in C#
Any ideas to check whether current application is run on primary screen or not in a dual screen environment? I am using VSTS 2008 + C# + .Net 3.5. I want to add code in my application to detect whether current application is run on primary screen or not.
thanks in advance,
George
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Screen 类,它可以告诉您控件是否位于特定屏幕上。 您还可以获取主监视器,每个 Screen 对象也有一个 Primary 属性,该属性指示它是否是主监视器。
这是 msdn 文章。
您应该能够像这样使用它:
You can use the Screen class which can tell you whether or not a control is on a particular screen or not. You can also get the primary monitory, and every Screen object also has a Primary property which indicates whether or not it is the primary monitory.
Here's the msdn article.
You should be able to use it like this:
未测试:(目前没有双屏设置可供测试)
其中“this”是应用程序的主要形式。
编辑:刚刚测试过,它按预期工作。
NOT TESTED: (don't have a dual screen setup at the moment to test on)
where "this" is the main form of your application.
EDIT: Just tested it, it works as expected.