AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 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