MVVM Dialogs v7.0.0 Release Notes

Release Date: 2020-01-28 // about 4 years ago
  • ๐Ÿฑ โšก Added

    • ๐Ÿ #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