美文网首页
elctron 部分操作

elctron 部分操作

作者: 沉默固执老阿姨 | 来源:发表于2023-02-19 14:10 被阅读0次

    1、加载URL 链接

     mainWindow.loadURL

    2、读取系统变量

    process.env.shuguang

    3、加载本地html页面

    mainWindow.loadFile()

    4、初始化win

      mainWindow = new BrowserWindow({

        fullscreen: true,

        show: false,

        transparent: false,

        frame: false,

        webPreferences: {

          nodeIntegration: true,

          contextIsolation: false,

          enableRemoteModule: true

          // preload: path.join(__dirname, 'preload.js'),

        }

      })

    5、初次打开最大化

      mainWindow.maximize()

      mainWindow.show()

    6、

    相关文章

      网友评论

          本文标题:elctron 部分操作

          本文链接:https://www.haomeiwen.com/subject/ouuikdtx.html