當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript BrowserWindow.show方法代碼示例

本文整理匯總了TypeScript中electron.BrowserWindow.show方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript BrowserWindow.show方法的具體用法?TypeScript BrowserWindow.show怎麽用?TypeScript BrowserWindow.show使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在electron.BrowserWindow的用法示例。


在下文中一共展示了BrowserWindow.show方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: async

	webContents.on('dom-ready', async () => {
		await updateAppMenu();

		webContents.insertCSS(readFileSync(path.join(__dirname, '..', 'css', 'browser.css'), 'utf8'));
		webContents.insertCSS(readFileSync(path.join(__dirname, '..', 'css', 'dark-mode.css'), 'utf8'));
		webContents.insertCSS(readFileSync(path.join(__dirname, '..', 'css', 'vibrancy.css'), 'utf8'));
		webContents.insertCSS(
			readFileSync(path.join(__dirname, '..', 'css', 'code-blocks.css'), 'utf8')
		);

		if (config.get('useWorkChat')) {
			webContents.insertCSS(
				readFileSync(path.join(__dirname, '..', 'css', 'workchat.css'), 'utf8')
			);
		}

		if (existsSync(path.join(app.getPath('userData'), 'custom.css'))) {
			webContents.insertCSS(readFileSync(path.join(app.getPath('userData'), 'custom.css'), 'utf8'));
		}

		if (config.get('launchMinimized') || app.getLoginItemSettings().wasOpenedAsHidden) {
			mainWindow.hide();
		} else {
			mainWindow.show();
		}

		webContents.send('toggle-mute-notifications', config.get('notificationsMuted'));
		webContents.send('toggle-message-buttons', config.get('showMessageButtons'));

		webContents.executeJavaScript(
			readFileSync(path.join(__dirname, 'notifications-isolated.js'), 'utf8')
		);
	});
開發者ID:kusamakura,項目名稱:caprine,代碼行數:33,代碼來源:index.ts

示例2:

		const toggleWin = (): void => {
			if (win.isVisible()) {
				win.hide();
			} else {
				win.show();
			}
		};
開發者ID:kusamakura,項目名稱:caprine,代碼行數:7,代碼來源:tray.ts

示例3: Promise

    return new Promise(resolve => {
        if (isDev || !isAnySetupRequired()) {
            const {
                loadExtensions
            } = require("eez-studio-shared/extensions/extensions") as typeof ExtensionsModule;
            loadExtensions();

            resolve();
            return;
        }

        let win = new BrowserWindow({
            width: 600,
            height: 200,
            backgroundColor: "#333",
            show: false
        });

        win.setMenu(null);
        win.loadURL(`file://${__dirname}/../setup/setup.html`);

        win.show();

        ipcMain.on("startSetup", async (event: Event) => {
            await doSetup(event.sender);
            win.close();
            resolve();
        });
    });
開發者ID:eez-open,項目名稱:studio,代碼行數:29,代碼來源:setup.ts

示例4: onMainWindowReady

ipcMain.on('main-window-ready', function onMainWindowReady() {
    // do not show windows before react is ready
    if (mainWindow) {
        mainWindow.show();
        mainWindow.focus();
    }
});
開發者ID:alcarin-org,項目名稱:alcarin,代碼行數:7,代碼來源:main.ts

示例5: Error

 mainWindow.webContents.on("did-finish-load", () => {
   if (!mainWindow) {
     throw new Error('"mainWindow" is not defined');
   }
   mainWindow.show();
   mainWindow.focus();
 });
開發者ID:weifuchuan,項目名稱:fetcher,代碼行數:7,代碼來源:main.dev.ts

示例6:

app.on('second-instance', () => {
	if (mainWindow) {
		if (mainWindow.isMinimized()) {
			mainWindow.restore();
		}

		mainWindow.show();
	}
});
開發者ID:kusamakura,項目名稱:caprine,代碼行數:9,代碼來源:index.ts

示例7:

      click: menuItem => {
        if (win == null) {
          return;
        }

        if (win.isVisible()) {
          win.hide();
        } else {
          win.show();
        }
      }
開發者ID:stargeizer,項目名稱:noia-node-gui,代碼行數:11,代碼來源:main.ts

示例8: switch

 electron.ipcMain.on('loadWindow', (event, arg) => {
     switch (arg) {
         case 1:
             mainWindow.hide();
             registerWindow.show();
             break;
         case 2:
             registerWindow.hide();
             mainWindow.show();
             break;
         case 3:
             mainWindow.loadURL('file://' + __dirname + '/views/chat.html');
             break;
         case 4:
             mainWindow.loadURL('file://' + __dirname + '/views/room.html');
             break;
         default:
             registerWindow.hide();
             mainWindow.show();
     }
     socket.removeAllListeners("receive");
 });
開發者ID:edoren,項目名稱:ChatClient,代碼行數:22,代碼來源:index.ts

示例9:

electron.app.on('ready', () => {
  const mainWindow = new electron.BrowserWindow({
    width: 1024,
    height: 768,
    minWidth: 320,
    minHeight: 240,
    acceptFirstMouse: true,
    title: 'GridPrompt',
    titleBarStyle: 'hidden'
  });
  mainWindow.loadURL(`file://${__dirname}/../ui/index.html`);
  mainWindow.show();
});
開發者ID:luncheon,項目名稱:GridPrompt,代碼行數:13,代碼來源:main.ts


注:本文中的electron.BrowserWindow.show方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。