• Electron基础


    在开发桌面端应用我们常常需要弹出一个提示窗体或者对话框,而提示窗体和对话框和普通窗体的区别是,在提示框出现时,其它窗体就被锁定了,必须要等到提示框被正确关闭时其它窗体才能“解锁”,这种类型的窗体叫做模态窗。在Electron中实现起来也非常的简单:

    ES5:

    var top = require('electron').remote.getCurrentWindow();
    var child = new BrowserWindow({parent: top, modal: true, show: show});
    child.loadURL('https://github.com');

    ES6:

    const {remote} = require('electron');
    let top = remote.getCurrentWindow();
    let child = new BrowserWindow({parent: top, modal: true, show: show});
    child.loadURL('https://github.com');
  • 相关阅读:
    P、NP、NPC、NPH问题介绍
    过河卒 bfs搜索
    对迪杰斯特拉算法的理解
    第七周
    周作业
    月考一
    第四周
    第三周
    第二周作业
    46期第一次作业
  • 原文地址:https://www.cnblogs.com/yinliang/p/11579057.html
Copyright © 2020-2023  润新知