上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 61 下一页
摘要: const { BrowserWindow } = require('electron') class AppWindow extends BrowserWindow { constructor(config,urlLocation){ const basicConfig = { width:102 阅读全文
posted @ 2022-02-06 15:33 13522679763-任国强 阅读(33) 评论(0) 推荐(0)
摘要: cnpm i --save-dev devtron require('devtron').install() mainWindow.webContents.openDevTools() 阅读全文
posted @ 2022-02-06 15:32 13522679763-任国强 阅读(59) 评论(0) 推荐(0)
摘要: const { ipcRenderer } = require('electron') window.addEventListener('DOMContentLoaded', () => { document.getElementById('node-version').innerHTML = pr 阅读全文
posted @ 2022-02-06 15:32 13522679763-任国强 阅读(50) 评论(0) 推荐(0)
摘要: -- 是否为 发开环境 cnpm install electron-is-dev --save-dev npm install concurrently --save-dev npm install nodemon --save-dev npm i nodemon --save-dev 配置命令 " 阅读全文
posted @ 2022-02-06 15:31 13522679763-任国强 阅读(90) 评论(0) 推荐(0)
摘要: // 导入文件 const importFiles = () => { remote.dialog.showOpenDialog({ title:'选择导入的 markdown 文件', properties:['openfile','multiSelections'], filters:[ {na 阅读全文
posted @ 2022-02-06 15:29 13522679763-任国强 阅读(157) 评论(0) 推荐(0)
摘要: const {app,shell } = require('electron') let template = [ { label:'文件', submenu:[ { label:'新建', accelerator:'CmdOrCtrl+N', click:(menuItem,browserWind 阅读全文
posted @ 2022-02-06 15:28 13522679763-任国强 阅读(59) 评论(0) 推荐(0)
摘要: remote.getCurrentWindow().close() 阅读全文
posted @ 2022-02-06 15:27 13522679763-任国强 阅读(30) 评论(0) 推荐(0)
摘要: const Store = require('electron-store') const settingsStore = new Store({name:'Settings'}) let savedLocation = settingsStore.get('saveFileLocation') i 阅读全文
posted @ 2022-02-06 15:26 13522679763-任国强 阅读(31) 评论(0) 推荐(0)
摘要: const Store = require('electron-store') const { v4: uuidv4 } = require('uuid'); const path = require('path') class DataStore extends Store { construct 阅读全文
posted @ 2022-01-30 17:08 13522679763-任国强 阅读(216) 评论(0) 推荐(0)
摘要: exports.$ = (id) => { return document.getElementById(id) } exports.convertDuration = (time) => { // 计算分钟 02 020 const minutes = "0" + Math.floor(time/ 阅读全文
posted @ 2022-01-30 17:07 13522679763-任国强 阅读(45) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 61 下一页