You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#91 Added the following settings for parity with the native Windows dialogs (proposed by @Kimmerest)
FolderBrowserDialogSettings
RootFolder - The root folder where the browsing starts from
MessageBoxSettings
Options - A value object that specifies the options
OpenFileDialogSettings
CustomPlaces - The list of custom places for file dialog boxes
DereferenceLinks - A value indicating whether a file dialog returns either the location of the file referenced by a shortcut or the location of the shortcut file (.lnk)
ReadOnlyChecked - A value indicating whether the read-only check box displayed by the open file dialog is selected
SafeFileName - A string that only contains the file name for the selected file
SafeFileNames - An array that contains one safe file name for each selected file
ShowReadOnly - A value indicating whether the open file dialog contains a read-only check box
ValidateNames - A value indicating whether the dialog accepts only valid Win32 file names
SaveFileDialogSettings
CustomPlaces - The list of custom places for file dialog boxes
DereferenceLinks - A value indicating whether a file dialog returns either the location of the file referenced by a shortcut or the location of the shortcut file (.lnk)
SafeFileName - A string that only contains the file name for the selected file
SafeFileNames - An array that contains one safe file name for each selected file
ValidateNames - A value indicating whether the dialog accepts only valid Win32 file names
💉 Changed
[BREAKING CHANGE] The default value of SaveFileDialogSettings.CheckFileExists has changed from true to false, aligning it with the default value of the native Windows SaveFileDialog