mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 21:29:09 +08:00
12 lines
263 B
Go
12 lines
263 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
|
|
}
|