Electron frameless window | Ebots



Today we make Electron window frameless. In this window body parts like toolbars are not present.

Frame:false


Find out the text in index.js 



win = new BrowserWindow({ width: 800, height: 600,frame: true,})



replace with 


win = new BrowserWindow({ width: 800, height: 600,frame: false,})




then run the electron app, you may have a window like this.



titleBarStyle Hidden

This is the macOS only alternative. It removes the titlebar but leaves the stop light buttons.


win = new BrowserWindow({ width: 800, height: 600,titleBarStyle: 'hidden',})







Download the code here.

Share this:

Post a Comment

 
Copyright © Ebots.