如何在 Electron 的 about 面板中添加更多图片和文本?
How do i add more images and text to about panel in Electron?
我正在用 Electron 开发一个应用程序,目前正在开发关于面板。问题是我想将更多文本分行放入面板中,但我不知道该怎么做。另外,有没有办法添加更多图像,就像您在 iTunes 上看到的那样?
app.setAboutPanelOptions({
applicationName: "Hubris",
applicationVersion: "Beta version 1.0.0",
version: "Build 3.5.5",
credits: "Ethan Koehler-Bryant",
copyright: "© 2019 Koehler Games. All rights reserved."
});
这个库应该有你需要的所有功能。
openAboutWindow({
icon_path: 'path/to/icon.png'
});
https://github.com/rhysd/electron-about-window
如果您需要更多自由,可以使用 use_inner_html
.
注入您自己的自定义 html
我正在用 Electron 开发一个应用程序,目前正在开发关于面板。问题是我想将更多文本分行放入面板中,但我不知道该怎么做。另外,有没有办法添加更多图像,就像您在 iTunes 上看到的那样?
app.setAboutPanelOptions({
applicationName: "Hubris",
applicationVersion: "Beta version 1.0.0",
version: "Build 3.5.5",
credits: "Ethan Koehler-Bryant",
copyright: "© 2019 Koehler Games. All rights reserved."
});
这个库应该有你需要的所有功能。
openAboutWindow({
icon_path: 'path/to/icon.png'
});
https://github.com/rhysd/electron-about-window
如果您需要更多自由,可以使用 use_inner_html
.