2 interfaces inheriting from IFileDialog
PresentationFramework (2)
src\Framework\MS\Internal\AppModel\ShellProvider.cs (2)
550
internal interface IFileOpenDialog :
IFileDialog
600
internal interface IFileSaveDialog :
IFileDialog
28 references to IFileDialog
PresentationFramework (28)
src\Framework\Microsoft\Win32\FileDialog.cs (15)
1898
public delegate bool OnOkCallback(
IFileDialog
dialog);
1904
private
IFileDialog
_dialog;
1917
public VistaDialogEvents(
IFileDialog
dialog, OnOkCallback okCallback)
1928
HRESULT IFileDialogEvents.OnFileOk(
IFileDialog
pfd)
1939
HRESULT IFileDialogEvents.OnFolderChanging(
IFileDialog
pfd, IShellItem psiFolder)
1950
HRESULT IFileDialogEvents.OnFolderChange(
IFileDialog
pfd)
1961
HRESULT IFileDialogEvents.OnSelectionChange(
IFileDialog
pfd)
1972
HRESULT IFileDialogEvents.OnShareViolation(
IFileDialog
pfd, IShellItem psi, out FDESVR pResponse)
1984
HRESULT IFileDialogEvents.OnTypeChange(
IFileDialog
pfd)
1995
HRESULT IFileDialogEvents.OnOverwrite(
IFileDialog
pfd, IShellItem psi, out FDEOR pResponse)
2021
internal abstract
IFileDialog
CreateVistaDialog();
2028
internal abstract string[] ProcessVistaFiles(
IFileDialog
dialog);
2041
internal virtual void PrepareVistaDialog(
IFileDialog
dialog)
2109
IFileDialog
dialog = CreateVistaDialog();
2129
private bool HandleVistaFileOk(
IFileDialog
dialog)
src\Framework\Microsoft\Win32\OpenFileDialog.cs (3)
441
internal override string[] ProcessVistaFiles(
IFileDialog
dialog)
469
internal override
IFileDialog
CreateVistaDialog()
473
return (
IFileDialog
)Activator.CreateInstance(Type.GetTypeFromCLSID(new Guid(CLSID.FileOpenDialog)));
src\Framework\Microsoft\Win32\SaveFileDialog.cs (3)
395
internal override string[] ProcessVistaFiles(
IFileDialog
dialog)
409
internal override
IFileDialog
CreateVistaDialog()
415
return (
IFileDialog
)Activator.CreateInstance(Type.GetTypeFromCLSID(new Guid(CLSID.FileSaveDialog)));
src\Framework\MS\Internal\AppModel\ShellProvider.cs (7)
441
HRESULT OnFileOk(
IFileDialog
pfd);
444
HRESULT OnFolderChanging(
IFileDialog
pfd, IShellItem psiFolder);
447
HRESULT OnFolderChange(
IFileDialog
pfd);
450
HRESULT OnSelectionChange(
IFileDialog
pfd);
453
HRESULT OnShareViolation(
IFileDialog
pfd, IShellItem psi, out FDESVR pResponse);
456
HRESULT OnTypeChange(
IFileDialog
pfd);
459
HRESULT OnOverwrite(
IFileDialog
pfd, IShellItem psi, out FDEOR pResponse);