소스 검색

显示标题栏

john 2 년 전
부모
커밋
22f96cbff3
2개의 변경된 파일20개의 추가작업 그리고 3개의 파일을 삭제
  1. 19 0
      README.md
  2. 1 3
      src-tauri/tauri.conf.json

+ 19 - 0
README.md

@@ -5,3 +5,22 @@ This template should help get you started developing with Tauri, React and Types
 ## Recommended IDE Setup
 
 - [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
+
+
+
+
+## 开发笔记
+```
+隐藏标题栏
+    "windows": [
+      {
+        "fullscreen": false,
+        "height": 735,
+        "resizable": true,
+        "title": "System Tools",
+        "width": 1150,
+        "hiddenTitle": true,
+        "titleBarStyle": "Overlay"
+      }
+    ]
+```

+ 1 - 3
src-tauri/tauri.conf.json

@@ -59,9 +59,7 @@
         "height": 735,
         "resizable": true,
         "title": "System Tools",
-        "width": 1150,
-        "hiddenTitle": true,
-        "titleBarStyle": "Overlay"
+        "width": 1150
       }
     ]
   }