https://www.npmjs.com/package/electron-progressbar#more-examples
嗨,我需要在电子中使用进度条。
但是使用progressbar程序包,事实证明示例可以在主过程中使用,而不能在渲染器过程中使用。
是否可以在渲染器过程中使用它,以便用户单击计算按钮并等待一段时间?
答案 0 :(得分:1)
是的。
const { getGlobal, app } = require('electron').remote;
const ProgressBar = getGlobal('ProgressBar');
app.on('ready', function() {
var progressBar = new ProgressBar({
text: 'Preparing data...',
detail: 'Wait...'
});
==