返回 oh-my-ppt
menu.ts
根目录 / src / main / app / menu.ts
1 import type { BrowserWindow } from 'electron'
2
3 /** Owns the existing window-menu visibility policy without changing its behavior. */
4 export function configureWindowMenu(window: BrowserWindow): void {
5 window.setAutoHideMenuBar(true)
6 }
7
7 lines TYPESCRIPT