【问题标题】:Electron - Make Windows Title bar Looks like Muno Title barElectron - 使 Windows 标题栏看起来像 Muno 标题栏
【发布时间】:2018-02-25 23:36:11
【问题描述】:

我想让 Windows 的标题栏看起来像 Muno Title bar

我尝试使用This title bar
但它没有显示任何内容

请帮忙

【问题讨论】:

    标签: javascript html electron titlebar


    【解决方案1】:

    他,我是Muno的开发者。也许我可以帮忙。

    我使用 browserWindow 选项:

    const {width, height} = electron.screen.getPrimaryDisplay().workAreaSize;
    
    let options = {
       show: false,
       frame: false,
       center: !isDev,
       titleBarStyle: 'hidden',
       width: Math.round((width / 100) * 85),
       height: Math.round((height / 100) * 85),
    };
    

    另一部分只是 CSS,我将这个 sn-p 用于交通灯按钮: https://codepen.io/atdrago/pen/yezrBR

    希望这会有所帮助。你在做什么?

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2010-12-03
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-12-03
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多