我面临一个问题。 我需要将我的电子应用始终放置在全角顶部,并在其下方放置其他窗口。 我怎样才能做到这一点? 有人可以帮助我解决这个问题吗?
答案 0 :(得分:1)
您应该使用mainWindow.maximize()
来显示全屏屏幕。
function createWindow() {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 1366,
height: 783,
alwaysOnTop:true //display show on top
})
// and load the index.html of the app.
mainWindow.loadFile('index.html');
// Emitted when the window is closed.
mainWindow.on('closed', function () {
mainWindow = null
})
mainWindow.maximize() //call like this way
}
您可以从here
获得更多参考