  | VistaFileDialogShowDialog Method (Window) | 
 
            Displays the file dialog.
            
 
    Namespace: 
   Ookii.Dialogs.Wpf
    Assembly:
   Ookii.Dialogs.Wpf (in Ookii.Dialogs.Wpf.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic bool? ShowDialog(
	Window owner
)
Public Function ShowDialog ( 
	owner As Window
) As Boolean?
public:
Nullable<bool> ShowDialog(
	Window^ owner
)
member ShowDialog : 
        owner : Window -> Nullable<bool> 
Parameters
- owner
 - Type: System.WindowsWindow
Handle to the window that owns the dialog. 
Return Value
Type: 
NullableBooleanIf the user clicks the OK button of the dialog that is displayed (e.g. 
VistaOpenFileDialog, 
VistaSaveFileDialog), 
 is returned; otherwise, 
.
See Also