自学内容网 自学内容网

electron的常用弹窗简单案例

electron的官方中文文档

有哪些常用类型的弹窗

1. electron一个简单的消息框

const { dialog } = require('electron');

dialog.showMessageBox(mainWindow, {
  type: 'info', // 可选类型有 info, warning, error, question
  buttons: ['OK'], // 按钮文本数组
  title: '提示信息',
  message: '这是一个提示信息'
}).then(response => {
  console.log(`用户点击了第 ${response.response} 个按钮`);
});

2. electron打开文件选择器

dialog.showOpenDialog(mainWindow, {
  properties: ['openFile', 'openDirectory'] // 可选属性,用于指定打开文件还是目录
}).then(result => {
  if (!result.canceled) {
    console.log('选定的文件路径:', result.filePaths);
  }
});

3. electron显示保存文件对话框

dialog.showSaveDialog(mainWindow, {
  defaultPath: '~/Documents/newfile.txt', // 默认路径
  filters: [
    { name: 'Text files', extensions: ['txt'] },
    { name: 'All Files', extensions: ['*'] }
  ] // 文件过滤器
}).then(result => {
  if (!result.canceled) {
    console.log('选定的保存路径:', result.filePath);
  }
});

4.electron形式警告或错误对话框

dialog.showErrorBox('错误标题', '发生了一个严重错误,请稍后再试。');

5. electron中渲染进程中alert

alert("弹窗提示")
   
注意:alert的弹窗标题为package.json文件的name字段           


原文地址:https://blog.csdn.net/qq_30071431/article/details/142566695

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!