在双屏环境中运行应用程序

发布于 2024-07-25 04:41:33 字数 352 浏览 11 评论 0原文

可能的重复:
如何查找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 技术交流群。

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

发布评论

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

评论(2

旧人九事 2024-08-01 04:41:33

您可以使用 Screen 类,它可以告诉您控件是否位于特定屏幕上。 您还可以获取主监视器,每个 Screen 对象也有一个 Primary 属性,该属性指示它是否是主监视器。

这是 msdn 文章

您应该能够像这样使用它:

var monitor = Screen.FromControl(this);

if (monitor.Primary) //the monitor returned is the primary monitor

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:

var monitor = Screen.FromControl(this);

if (monitor.Primary) //the monitor returned is the primary monitor
じ违心 2024-08-01 04:41:33

未测试:(目前没有双屏设置可供测试)

bool onPrimary = this.Bounds.IntersectsWith(Screen.PrimaryScreen.Bounds);

其中“this”是应用程序的主要形式。

编辑:刚刚测试过,它按预期工作。

NOT TESTED: (don't have a dual screen setup at the moment to test on)

bool onPrimary = this.Bounds.IntersectsWith(Screen.PrimaryScreen.Bounds);

where "this" is the main form of your application.

EDIT: Just tested it, it works as expected.

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