728x90 반응형 electron1 [Electron] 기초 설정 1. 메뉴 바 삭제 electron을 처음에 설치하면 상단 메뉴바가 자동으로 생성된다. mainWindow.setMenuBarVisibility를 false로 변경한다. function createWindow() { mainWindow = new BrowserWindow({ width: 900, height: 680, webPreferences: { nodeIntegration: true, //enableRemoteModule: true, devTools: isDev, }, }); mainWindow.setMenuBarVisibility(false) (mainWindow = null)); mainWindow.focus(); } 삭제 완료 ! 2. 앱 아이콘 변경 우선 사용하고 싶은 아이콘을 다운받고 폴더.. 2022. 9. 10. 이전 1 다음 728x90 반응형