mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 14:42:03 +08:00
16 lines
507 B
Go
16 lines
507 B
Go
package windows
|
|
|
|
// Options are options specific to Windows
|
|
type Options struct {
|
|
WebviewIsTransparent bool
|
|
WindowIsTranslucent bool
|
|
DisableWindowIcon bool
|
|
|
|
// Draw a border around the window, even if the window is frameless
|
|
EnableFramelessBorder bool
|
|
|
|
// Path where the WebView2 stores the user data. If empty %APPDATA%\[BinaryName.exe] will be used.
|
|
// If the path is not valid, a messagebox will be displayed with the error and the app will exit with error code.
|
|
WebviewUserDataPath string
|
|
}
|