Как открыть электронное приложение, не открывая окно - PullRequest
0 голосов
/ 23 апреля 2019

я делаю приложение в буфер обмена в Electron. До сих пор я сделал это, чтобы вы могли открыть программу, и она войдет в ваш трей, но окно также открывается и не требуется для правильной работы моей программы. Вот мой код Я почесал голову, пытаясь понять, как запустить программу, не открывая окно.

ТИА

Код:

// Modules to control application life and create native browser window
const {app, BrowserWindow, globalShortcut, Tray, Menu} = require('electron')

// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow



function createWindow () {
  // Create the browser window.
  mainWindow = new BrowserWindow({
    width: 800,
    height: 600,
    webPreferences: {
      nodeIntegration: true

    }
  })

  const ret = globalShortcut.register("Super+Alt+V", () => {
     mainWindow.isVisible()
      ? mainWindow.hide()
      : mainWindow.show();
    });


    if(!ret) {
      console.error('failed to register hotkey');
    }


    tray = new Tray('./Nstar2.jpg');
    tray.setToolTip('Racesim');

    tray.displayBalloon({
      title: "Hey",
      content: "It looks like you copied something..."
    });

    const contextMenu = Menu.buildFromTemplate([
    {label: 'Exit', type: 'normal', click:() => {
      app.quit();
    }},

    ])

    tray.setContextMenu(contextMenu);

  // and load the index.html of the app.
  mainWindow.loadFile('index.html')

  // Open the DevTools.
  // mainWindow.webContents.openDevTools()

  // Emitted when the window is closed.
  mainWindow.on('closed', function () {
    // Dereference the window object, usually you would store windows
    // in an array if your app supports multi windows, this is the time
    // when you should delete the corresponding element.
    mainWindow = null
  })
}

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)

// Quit when all windows are closed.
app.on('window-all-closed', function () {
  // On macOS it is common for applications and their menu bar
  // to stay active until the user quits explicitly with Cmd + Q
  if (process.platform !== 'darwin') {
    app.quit()
  }
})



app.on('activate', function () {
  // On macOS it's common to re-create a window in the app when the
  // dock icon is clicked and there are no other windows open.
  if (mainWindow === null) {
    createWindow()
  }
})

// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.

В основном я хочу, чтобы он открывался и оставался в трее, вот и все.

1 Ответ

0 голосов
/ 23 апреля 2019

Короче говоря, Electron не позволяет запустить приложение без отображения окна.Единственный вариант - свернуть окно сразу после запуска приложения.

Большинство людей полагаются на пакет auto-launch (или аналогичный) для достижения этой цели.Этот пакет просто позволяет вам передавать и анализировать аргумент в вашем приложении узла.

Вот некоторые полезные ресурсы, я рекомендую вам проверить их:

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...