通过将窗口设置为全屏来使用远程
const { remote } = require("electron"); // <- The Node.js require() function is
// added to JavaScript by electron
function fullscreen(f) { // p = false or true
const currentWindow = remote.getCurrentWindow();
currentWindow.maximize();
}