作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道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/
我是一名优秀的程序员,十分优秀!