2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

electronアプリから初期メニューを消す方法

Last updated at Posted at 2019-12-10

Webサイトを開く単純なサンプルアプリをつくっていて、初期メニューを消す方法を探していたが正解までのノイズが多くて手間取ったので。

electronのバージョン
> "./node_modules/.bin/electron" -v
 v7.1.4

BrowserWindowに対して色々やるのは :no_good:

ググって出てくるメソッドはどれも古いようでした。

以下、効果のないメソッド
// winはBrowserWindowのインスタンス
win.setMenu(null);
win.setMenuBarVisibility(false);
win.removeMenu();

Menu.setApplicationMenu(false) :ok_woman:

electronは流れが早いのか、破壊的な変更が多いのかはよく知らないのですが、公式docsがイチバン(Menu | Electron)だというのはよくわかりました。

メニューなしでGoogleをひらくサンプル
const { app, BrowserWindow, Menu } = require("electron");

Menu.setApplicationMenu(false);

app.on("ready", () => {
    let win = new BrowserWindow({ width: 800, height: 600 });

    win.on("closed", () => {
        win = null;
    });

    win.loadURL("https://google.com");
});

余談

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?