翻译 https://docs.rs/tauri/1.3.0/tauri/window/struct.WindowBuilder.html
时间: 2023-10-04 17:14:46 浏览: 177
这是一个 Rust 语言的 API 文档,介绍了 Tauri 库版本 1.3.0 中的 `WindowBuilder` 结构体。`WindowBuilder` 结构体是用于创建 Tauri 应用程序窗口的构建器。以下是该文档的翻译:
# `WindowBuilder`
用于创建 Tauri 应用程序窗口的构建器。
## 结构体成员
### `width`
窗口的宽度。默认值为 `800`。
### `height`
窗口的高度。默认值为 `600`。
### `title`
窗口的标题。默认值为 `Tauri Application`。
### `resizable`
窗口是否可以调整大小。默认为 `true`。
### `fullscreen`
窗口是否全屏。默认为 `false`。
### `fullscreenable`
窗口是否可以全屏。默认为 `true`。
### `decorations`
窗口是否有装饰。默认为 `true`。
### `transparent`
窗口是否透明。默认为 `false`。
### `always_on_top`
窗口是否总在最上层。默认为 `false`。
### `icon`
窗口的图标。默认为 `None`。
### `min_width`
窗口的最小宽度。默认为 `None`。
### `min_height`
窗口的最小高度。默认为 `None`。
### `max_width`
窗口的最大宽度。默认为 `None`。
### `max_height`
窗口的最大高度。默认为 `None`。
### `inner_border`
窗口是否有内边框。默认为 `true`。
### `platform_specific`
在某些平台上启用特定于平台的外观和行为。默认为 `true`。
## 方法
### `new() -> WindowBuilder`
创建新的 `WindowBuilder` 实例。
### `build(&self) -> Result<Window, String>`
使用该构建器创建并返回一个新的 `Window` 实例。如果构建器的参数不正确,则返回一个 `Err`。
### `with_title<S: Into<String>>(mut self, title: S) -> Self`
设置窗口标题。
### `with_width(mut self, width: f64) -> Self`
设置窗口的宽度。
### `with_height(mut self, height: f64) -> Self`
设置窗口的高度。
### `with_resizable(mut self, resizable: bool) -> Self`
设置窗口是否可以调整大小。
### `with_fullscreen(mut self, fullscreen: bool) -> Self`
设置窗口是否全屏。
### `with_fullscreenable(mut self, fullscreenable: bool) -> Self`
设置窗口是否可以全屏。
### `with_decorations(mut self, decorations: bool) -> Self`
设置窗口是否有装饰。
### `with_transparent(mut self, transparent: bool) -> Self`
设置窗口是否透明。
### `with_always_on_top(mut self, always_on_top: bool) -> Self`
设置窗口是否总在最上层。
### `with_icon(mut self, icon: Icon) -> Self`
设置窗口的图标。
### `with_min_width(mut self, min_width: f64) -> Self`
设置窗口的最小宽度。
### `with_min_height(mut self, min_height: f64) -> Self`
设置窗口的最小高度。
### `with_max_width(mut self, max_width: f64) -> Self`
设置窗口的最大宽度。
### `with_max_height(mut self, max_height: f64) -> Self`
设置窗口的最大高度。
### `with_inner_border(mut self, inner_border: bool) -> Self`
设置窗口是否有内边框。
### `with_platform_specific(mut self, platform_specific: bool) -> Self`
设置是否在某些平台上启用特定于平台的外观和行为。
## 示例
```rust
use tauri::WindowBuilder;
let builder = WindowBuilder::new()
.with_title("My App")
.with_width(800.0)
.with_height(600.0);
let window = builder.build().unwrap();
```
阅读全文