Habanero.Faces.Win.DialogUtilities.SelectFolderDialog C# (CSharp) Method

SelectFolderDialog() public static method

This method shows a dialog for the user to choose a folder
public static SelectFolderDialog ( IWin32Window owner, string &selectedPath ) : bool
owner IWin32Window The owner window for the dialog
selectedPath string The folder that was selected by the user
return bool
        public static bool SelectFolderDialog(IWin32Window owner, out string selectedPath)
        {
            return SelectFolderDialog(owner, out selectedPath, null);
        }

Same methods

DialogUtilities::SelectFolderDialog ( IWin32Window owner, string &selectedPath, string currentFolder ) : bool
DialogUtilities::SelectFolderDialog ( IWin32Window owner, string &selectedPath, string currentFolder, string description ) : bool
DialogUtilities::SelectFolderDialog ( string &selectedPath ) : bool
DialogUtilities::SelectFolderDialog ( string &selectedPath, string currentFolder ) : bool
DialogUtilities::SelectFolderDialog ( string &selectedPath, string currentFolder, string description ) : bool