首页 > 其他 > 详细

electron 创建窗口2

时间:2017-05-02 16:34:59      阅读:472      评论:0      收藏:0      [点我收藏+]
/**
 * 窗口管理类,单例,负责创建所有窗口,保存窗口实例
 */

const path = require(‘path‘);
const os = require(‘os‘);
const EucWindow = require(‘./euc_window‘);


/**
 * 窗口管理类,单例,负责创建所有窗口,保存窗口实例
 */
class WindowManager {
    constructor() {

        this.main = null;
        this.about = null;
        this.setting = null;
    }

    /**
     * 主窗口
     * @returns {EucWindow}
     */
     createMainWindow(){
        if(this.main) return this.main;


        // 主窗口样式
        const mainStyle = {
            // width: 280,
            // height: 400,
            // resizable: false,
   //         frame: os.platform() !== "win32",
            show: true
        };

        this.main = new EucWindow(mainStyle, path.join(__dirname, ‘../../index.html‘), this.main);

        return this.main;
    }


    /**
     * 关于窗口
     * @returns {EucWindow}
     */
    createAboutWindow() {

        if(this.about) return this.about;

        // 关于窗口样式
        const style = {
            width: 288,
            height: 336,
            resizable: false,
            frame: os.platform() !== "win32",
            show: true,
            modal: true,
            parent: this.main
        };

        this.about = new EucWindow(style, path.join(__dirname, ‘../test.html‘), this.about);
        return this.about;
    }
}







module.exports = WindowManager;

 

electron 创建窗口2

原文:http://www.cnblogs.com/sxz2008/p/6796701.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!