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
Adding a ClientGuid property would enable an application to maintain different sets of dialog state for different scenarios, similar to the use of the WinRT pickers' SettingsIdentifier property described by Raymond Chen back in 2020:
It should be as simple as adding a nullable Guid property to the VistaFileDialog and VistaFolderBrowserDialog classes, and calling dialog.SetClientGuid or dialog.ClientClientData in the SetDialogProperties method.
The text was updated successfully, but these errors were encountered:
The
IFileDialog
interface already defines theSetClientGuid
andClearClientData
methods.Adding a
ClientGuid
property would enable an application to maintain different sets of dialog state for different scenarios, similar to the use of the WinRT pickers'SettingsIdentifier
property described by Raymond Chen back in 2020:The SettingsIdentifier property of the various file pickers lets you give names to your pickers
It should be as simple as adding a nullable
Guid
property to theVistaFileDialog
andVistaFolderBrowserDialog
classes, and callingdialog.SetClientGuid
ordialog.ClientClientData
in theSetDialogProperties
method.The text was updated successfully, but these errors were encountered: