1 Star 2 Fork 0

李智烽/pw-housekeeping

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
李智烽 提交于 2022-08-25 23:16 . Init Project
// Modules to control application life and create native browser window
const { app, BrowserWindow, globalShortcut } = require('electron')
const createWindow = () => {
// Create the browser window.
const mainWindow = new BrowserWindow({
width: 600,
height: 250,
// transparent: true, // 透明窗体
frame: false // 是否显示关闭栏
})
// mainWindow.setIgnoreMouseEvents(true); // 鼠标穿透
// 加载 index.html
mainWindow.loadFile('pw-frontend/dist/index.html')
// 打开开发工具
// mainWindow.webContents.openDevTools()
}
// 这段程序将会在 Electron 结束初始化
// 和创建浏览器窗口的时候调用
// 部分 API 在 ready 事件触发后才能使用。
app.whenReady().then(() => {
globalShortcut.register('Alt+CommandOrControl+I', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
})
})
// 除了 macOS 外,当所有窗口都被关闭的时候退出程序。 There, it's common
// for applications and their menu bar to stay active until the user quits
// explicitly with Cmd + Q.
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
})
// In this file you can include the rest of your app's specific main process
// code. 也可以拆分成几个文件,然后用 require 导入。
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/stephen-lee/pw-housekeeping.git
git@gitee.com:stephen-lee/pw-housekeeping.git
stephen-lee
pw-housekeeping
pw-housekeeping
master

搜索帮助