4
3

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で指定の位置をドラッグ可能にする

Posted at

Electronのmacアプリ用でフレームレスウィンドウを使う場合、デフォルトではドラッグでアプリを移動できないようになっています。公式のDocsにもありますが、抜粋しておきます。

style.css
# anyID {
    -webkit-app-region: drag
}

例えばbodyなどでウィンドウ全体をドラッグ可能にした場合には、ボタンが効かなくなりますので、下記のコードを入れておきます。

style.css
button {
  -webkit-app-region: no-drag;
}

ということみたいです。

4
3
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?