Click or drag to resize

FileDialogEventType Enumeration

Defines a file dialog event type.

Namespace:  callback.ShellBoost.Core
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public enum FileDialogEventType
Members
  Member nameValueDescription
FileOk1 Called just before the dialog is about to return with a result. Corresponds to IFileDialogEvents::OnFileOk event. This will only be sent if the common dialog box state and/or results have been successfully validated.
FolderChange3 Called when the user navigates to a new folder. Corresponds to IFileDialogEvents::OnFolderChange event.
FolderChanging2 Called before FolderChange. This allows the implementer to stop navigation to a particular location. Corresponds to IFileDialogEvents::OnFolderChanging event.
Overwrite7 Called from the save dialog when the user chooses to overwrite a file. Corresponds to IFileDialogEvents::OnOverwrite event.
SelectionChange4 Called when the user changes the selection in the dialog's view. Corresponds to IFileDialogEvents::OnSelectionChange event.
ShareViolation5 Enables an application to respond to sharing violations that arise from Open or Save operations. Corresponds to IFileDialogEvents::OnShareViolation event.
TypeChange6 Called when the dialog is opened to notify the application of the initial chosen filetype. Corresponds to IFileDialogEvents::OnTypeChange event.
OnButtonOk8 Called when the default button is pressed. Only raised if Common Dialog hooks are enabled.
OnButtonCancel9 Called when the cancel button is pressed. Only raised if Common Dialog hooks are enabled.
OnClosed10 Called when the native window is closed or destroyed. Only raised if hooks are enabled.
OnOpened11 Called when ShellBoost starts monitoring a native window. Only raised if hooks are enabled. Note that if any dialog box hooks are enabled, this event can be raised twice.
See Also