Tauri 窗口

2024-02-05 17:42 更新

提供用于創(chuàng)建窗口、與其他窗口通信以及操作當(dāng)前窗口的 API。

當(dāng) build.withGlobalTauri設(shè)置為 ?in? 時,也可以訪問此包。window.__TAURI__.windowtauri.conf.jsontrue

這些 API 必須添加到 tauri.allowlist.window 中:tauri.conf.json

{
"tauri": {
"allowlist": {
"window": {
"all": true, // enable all window APIs
"create": true, // enable window creation
"center": true,
"requestUserAttention": true,
"setResizable": true,
"setTitle": true,
"maximize": true,
"unmaximize": true,
"minimize": true,
"unminimize": true,
"show": true,
"hide": true,
"close": true,
"setDecorations": true,
"setAlwaysOnTop": true,
"setContentProtected": true,
"setSize": true,
"setMinSize": true,
"setMaxSize": true,
"setPosition": true,
"setFullscreen": true,
"setFocus": true,
"setIcon": true,
"setSkipTaskbar": true,
"setCursorGrab": true,
"setCursorVisible": true,
"setCursorIcon": true,
"setCursorPosition": true,
"setIgnoreCursorEvents": true,
"startDragging": true,
"print": true
}
}
}
}

建議僅將用于優(yōu)化捆綁包大小和安全性的 API 列入允許列表。


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號