dialog icon indicating copy to clipboard operation
dialog copied to clipboard

Windows: no way to populate "Save as type" for FileSave dialogs?

Open dweymouth opened this issue 2 years ago • 1 comments

As far as I can tell, there is currently no way to populate the "Save as type" dropdown when creating file save dialogs on Windows. This leads to a confusing user experience with setting a default save filename and an extension filter, since Windows hides filename extensions in the dialogs

dweymouth avatar Jul 28 '23 01:07 dweymouth

Have you tried using .Filter?

// Filter adds a category of files to the types allowed by the dialog. Multiple // calls to Filter are cumulative - any of the provided categories will be allowed. // By default all files can be selected. // // The special extension '*' allows all files to be selected when the Filter is active.

image

roffe avatar Jul 28 '23 03:07 roffe