gpt4 book ai didi

javascript - 不使用index.html时自定义 Electron 标题栏

转载 作者:行者123 更新时间:2023-11-28 03:30:12 28 4
gpt4 key购买 nike

当使用以下代码时:

mainWindow.loadURL(`http://www.google.com/`);

我无法使用 css/html 制作自定义标题栏,因为我没有使用 index.html,而如果我使用此代码,我就可以做到:

loaderWindow.loadURL(`file:///${__dirname}/loader.html`);

我尝试过自定义 npm 包,例如 electro-titlebar-windows 和 custom-electron-titlebar。当我从 loadURL 显示外部页面时,似乎没有任何效果。

这是我当前在渲染器进程中实现的自定义 Electron 标题栏:

let MyTitleBar = new customTitlebar.Titlebar({
backgroundColor: customTitlebar.Color.fromHex('#03a9f4')
});

MyTitleBar.updateTitle('Test Title');

最佳答案

您应该能够使用setTitle Documentation

mainWindow.webContents.on('did-finish-load', () => {
mainWindow.setTitle('Test Title');
});

关于javascript - 不使用index.html时自定义 Electron 标题栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58238241/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com