我正在Windows 10上开发Electron + Vue应用程序(通过vue-cli和this模板生成)。
目前我设法显示透明窗口。一旦框架松散焦点,就会出现页面顶部的标题。
我所知道的是标题是<?php
$string = "508 519 401,01";
$string = str_replace(' ', '', $string);
$string = str_replace(',', '.', $string);
$numb = number_format(round((float)$string, 2), 2, '.', '');
echo($numb);
?>
中的标题。
如果我删除它,无论如何都会出现标题(标签:电子)
这是浏览器窗口的配置:
index.ejs
答案 0 :(得分:0)
显然,这就是原因:
修复将达到1.8.3或2.0.0
答案 1 :(得分:0)
试试:
mainApp = new BrowserWindow({
width: 200,
height: 200,
x: 100,
y: 100,
resizable: false,
alwaysOnTop: true,
frame: false,
focusable: true,
minimizable: false,
maximizable: false,
closable: false,
autoHideMenuBar: true,
transparent: true,
show: false,
webPreferences: {
overlayScrollbars: true
}
});
mainApp.name ='give a name';
mainApp.setMenu(null);
mainApp.setVisibleOnAllWorkspaces(true);