mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 17:42:24 +08:00
17 lines
484 B
Go
17 lines
484 B
Go
package options
|
|
|
|
// OpenDialog contains the options for the OpenDialog runtime method
|
|
type OpenDialog struct {
|
|
DefaultDirectory string
|
|
DefaultFilename string
|
|
Title string
|
|
Filter string
|
|
AllowFiles bool
|
|
AllowDirectories bool
|
|
AllowMultiple bool
|
|
ShowHiddenFiles bool
|
|
CanCreateDirectories bool
|
|
ResolveAliases bool
|
|
TreatPackagesAsDirectories bool
|
|
}
|