gpt4 book ai didi

javascript - Electron:如何从 BrowserWindow 获取屏幕?

转载 作者:行者123 更新时间:2023-12-01 16:04:59 30 4
gpt4 key购买 nike

我想知道BrowserWindow位于两个或多个屏幕上。
我猜 Electron API 没有给出方法。我怎样才能做到这一点?有什么办法吗??

最佳答案

没有直接的方法可以实现这一点。但是以下绝对可以达到您的目的。

const {BrowserWindow, screen} = require('electron');

let window = new BrowserWindow();

// Load a URL and show the window first

const winBounds = window.getBounds();
const whichScreen = screen.getDisplayNearestPoint({x: winBounds.x, y: winBounds.y});
// Returns the screen where your window is located
这是经过测试可以正常工作的。

关于javascript - Electron:如何从 BrowserWindow 获取屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45634392/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com