如何从透明无框窗口中删除标题

时间:2018-03-03 14:25:01

标签: vue.js electron

我正在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); ?> 中的标题。

如果我删除它,无论如何都会出现标题(标签:电子)

你知道我怎么能删除它吗? screen

这是浏览器窗口的配置:

index.ejs

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);