1 Star 0 Fork 1

东岳哥哥/wallpaper

forked from 明致成/wallpaper 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 882 Bytes
一键复制 编辑 原始数据 按行查看 历史
明致成 提交于 2023-04-23 21:16 . init
// 引入框架 Application
const { Application } = require('ee-core');
// 引入 EE 全局对象
const EE = require('ee-core/ee');
class Main extends Application {
constructor() {
super();
// this === eeApp;
}
/**
* 框架核心功能加载完成
*/
async ready () {
// do some things
}
/**
* Electron完成初始化,主窗口创建之前
*/
async electronAppReady () {
// do some things
}
/**
* 主窗口创建完成
*/
async windowReady () {
// 延迟加载,无白屏
const winOpt = this.config.windowsOption;
if (winOpt.show == false) {
const win = this.electron.mainWindow;
win.once('ready-to-show', () => {
win.show();
})
}
}
/**
* app退出之前
*/
async beforeClose () {
// do some things
}
}
// Instantiate an app object
EE.app = new Main();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/soudisnei/wallpaper.git
git@gitee.com:soudisnei/wallpaper.git
soudisnei
wallpaper
wallpaper
master

搜索帮助