返回介绍

Display.Activate 激活

发布于 2019-12-18 15:37:39 字数 2892 浏览 1000 评论 0 收藏 0

JavaScript => public function Activate(): void;
C# => public void Activate();

Description 描述

Activate an external display. Eg. Secondary Monitors connected to the System.

激活外部显示。如:二级监控系统连接到该系统。

The function Activate() will create a window of Screen width, Screen height and default Refresh Rates. This function is available on Windows, Linux and Mac platforms. The default primary Monitor is always indexed 0. Secondary Monitors range from 1 to 7. Ensure an external monitor is connected before Activating it.

Activate()将会创建具有宽,高和默认刷新频率的窗口。该函数支持的平台是Windows,Linux和 Mac平台。默认主显示的索引为0。次级显示的索引范围为1到7。激活前确保外部显示器与之相连。

JavaScript:

// Check the number of monitors connected.
if (Display.displays.Length > 1)
	// Activate the display 1 (second monitor connected to the system).
	Display.displays[1].Activate();

C#:

// Check the number of monitors connected.
if (Display.displays.Length > 1)
	// Activate the display 1 (second monitor connected to the system).
	Display.displays[1].Activate();

JavaScript =>public function Activate(width: int, height: int, refreshRate: int): void;
C# => public void Activate(int width, int height, int refreshRate);

Parameters 参数

widthDesired Width of the Window (for Windows only. On Linux and Mac uses Screen Width).
所需的窗口宽度(仅限于Windows。在Linux和Mac使用屏幕宽度)。
heightDesired Height of the Window (for Windows only. On Linux and Mac uses Screen Height).
所需的窗口高度(仅限于Windows。在Linux和Mac使用屏幕高度 )。
refreshRateDesired Refresh Rate.
所需的分辨率。

Description 描述

This overloaded function available for Windows allows specifying desired Window Width, Height and Refresh Rate.

这个重载的函数可用于Windows允许指定所需的窗口宽度,高度和刷新率。

The default primary Monitor is always indexed 0. Secondary Monitors range from 1 to 7. Ensure an external monitor is connected before Activating it.

默认主显示器的索引总为0。次级显示器的索引范围为1到7。激活它之前确保连接外部显示器。

JavaScript:

// Check the number of monitors connected.
if (Display.displays.Length > 1)
	// Activate the display 1 (second monitor connected to the system).
	Display.displays[1].Activate(0, 0, 60);

C#:

// Check the number of monitors connected.
if (Display.displays.Length > 1)
	// Activate the display 1 (second monitor connected to the system).
	Display.displays[1].Activate(0, 0, 60);

display

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文