5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-07 16:32:26 +08:00
wails/v3/pkg/application/options_windows.go

19 lines
380 B
Go

package application
type BackdropType int32
const (
Auto BackdropType = 0
None BackdropType = 1
Mica BackdropType = 2
Acrylic BackdropType = 3
Tabbed BackdropType = 4
)
type WindowsWindow struct {
// Select the type of translucent backdrop. Requires Windows 11 22621 or later.
BackdropType BackdropType
// Disable the icon in the titlebar
DisableIcon bool
}