多个显示器,如何唤醒其中一个但让其他显示器保持睡眠

发布于 2024-11-07 01:05:19 字数 106 浏览 3 评论 0原文

如果我有一个带有多个显示器的系统,并且它们都在睡觉,有没有办法,如果我摇动鼠标,只唤醒一个显示器并让其他显示器保持睡眠状态?在 c# 中?我查看了 Windows“屏幕”类,但没有唤醒或睡眠的方法。

if i have a system with multiple monitors, and they're all sleeping, is there a way, if i shake the mouse, to only wake one up and keep the others sleeping? in c#? I looked into the windows "screen" class but there's no methods for waking or sleeping.

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

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

发布评论

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

评论(2

还在原地等你 2024-11-14 01:05:19

监视器睡眠是操作系统的一项功能(通常,这意味着计算机已处于非活动状态一段时间)。我不确定 Windows 或任何其他操作系统是否允许这种低级干预(将唤醒的定义更改为特定于屏幕)。

Monitors sleeping is an OS function (usually, it means that the computer has been inactive for a time). I am not sure that windows, or any other operating system allows this kind of low level meddling (to change the definition of wake to be screen specific).

七颜 2024-11-14 01:05:19

不,这不是您可以在应用程序级别控制的功能。如果您仔细想想,它实际上并不是一个与代表单个桌面的多个屏幕进行交互的可行模型。

  • 现在每个监视器都有自己的不活动概念吗?
  • 用户是否必须不断地将鼠标悬停在不活动的显示器上才能唤醒它们?
  • 如果我们不使用整个显示屏,是否应该将大显示屏的其余部分清空?

桌面的中心思想是,当桌面未暂停时,您可以查看其上的任何内容,甚至是非活动窗口,并且该窗口可能位于辅助显示器上。要么全有,要么全无:所有显示器都被暂停,或者没有一个显示器被暂停。您可以禁用辅助显示器,但这会更改您的桌面配置。

No, this is not a feature you can control at the application level. And if you think about it, it is not really a workable model for interacting with multiple screens that represent a single desktop.

  • Does each monitor now have its own notion of inactivity?
  • Does the user have to continually keep mousing over to inactive displays to wake them up?
  • Should the rest of a big display be blanked out if we aren't using the whole display?

A central idea of the desktop is that when it is not suspended you could be looking at anything on it, even an inactive window and that window might be on a secondary display. It's either all or nothing: all displays are suspended or none of them are. You can disable secondary displays but that changes your desktop configuration.

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