Click here to Skip to main content
Click here to Skip to main content

WPF Folder Browser

By , 6 Nov 2010
 

Introduction

This is a folder browser for WPF similar to the one found in Windows forms. WPF currently does not provide a Folder browser dialog and the only thing near enough is the Microsoft.Win32.OpenFileDialog class in WPF's PresentationFramework.dll assembly which lets users specify multiple files to open.

Using the Code

The code contains only one XAML file which houses different parts of the dialog. The dialog is loosely based on the Windows file/ folder dialog model as it has a commonly selected folder area and a Windows explorer style treeview. The selected folder is displayed in the textbox at the bottom of the dialog. The code uses MVVM and has a dependency on the latest prism binaries but this is for the DelegateCommand only. The main ViewModel which the dialog binds to is the BrowserViewModel, this initializes the treeview to point to all the drives on the machine. It has a SelectedFolder property & a FolderSelected DelegateCommand which is invoked when the user selects a common folder on the left.

public DelegateCommand<object> FolderSelectedCommand
     {
         get
         {
             return new DelegateCommand<object>(it => SelectedFolder = 
		Environment.GetFolderPath((Environment.SpecialFolder)it));
         }
     }

The folders themselves are expressed in terms of a FolderViewModel which takes an ObservableCollection of FolderViewModels to represent sub folders. The treeview in the folder dialog is bound to this FolderViewModel. The FolderViewModel implements IsExpanded & IsSelected properties to add functionality to the TreeViewItem state, i.e., to dynamically load sub folders on selection/expansion of a node. Selecting a node also expands it similar to the Windows Explorer.

private void LoadFolders()
     {
         try
         {
             if (Folders.Count > 0)
                 return;

             string[] dirs = null;

             string fullPath = Path.Combine(FolderPath, FolderName);

             if (FolderName.Contains(':'))//This is a drive
                 fullPath = string.Concat(FolderName, "\\");
             else
                 fullPath = FolderPath;

             dirs = Directory.GetDirectories(fullPath);

             Folders.Clear();
             
             foreach (string dir in dirs)
                 Folders.Add(new FolderViewModel 
                 { Root = this.Root, FolderName = Path.GetFileName(dir), 
                 FolderPath = Path.GetFullPath(dir), 
                 FolderIcon = "Images\\FolderClosed.png" });

             if (FolderName.Contains(":"))
                 FolderIcon = "Images\\HardDisk.ico";

             Root.SelectedFolder = FolderPath;
         }
         catch (UnauthorizedAccessException ae)
         {
             Console.WriteLine(ae.Message);
         }
         catch (IOException ie)
         {
             Console.WriteLine(ie.Message);
         }
     }

Points of Interest

One of the things I came across while creating this control was that the WPF binding for the SpecialFolder enum in the Environment class did not work. Initially I thought that this was due to the enum being nested, but actually it is due to the fact that nested types are not supported in XAML. A workaround for this was to append a '+' instead of a '.' for the nested enum (e.g.: Environment+SpecialFolder.Desktop).

History

  • 14th October, 2010: Initial version
  • 15th October, 2010: Added Prism binaries to download zip

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)

About the Author

mohammed shareef
Software Developer
United Kingdom United Kingdom
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionLife saving examplememberHatzy14 Jun '12 - 21:59 
GeneralMy vote of 5memberjonnyboy8220 Mar '12 - 23:50 
GeneralMy vote of 5memberErik Rude12 Mar '12 - 5:41 
QuestionUnable to open your codesmemberjason27265 Jan '12 - 14:55 
AnswerRe: Unable to open your codesmemberDerek Cooper23 Jan '12 - 3:43 
Questionthank youmemberanthride6 Nov '11 - 5:06 
QuestionNew Functionalitymembersean ireson15 Sep '11 - 9:28 
AnswerRe: New FunctionalitymemberErik Rude12 Mar '12 - 5:40 
GeneralDoes this code sample availble in 3.5 ?memberdanies813 Sep '11 - 4:22 
Questionthanksgroupzhujinlong1984091316 Aug '11 - 21:18 
QuestionThanks this saved me some time. Found a bug.memberArsine59 Jul '11 - 12:34 
GeneralVery-2 good ArticlememberJaikrishan3 Jun '11 - 0:25 
GeneralMy vote of 5memberSlacker00727 Dec '10 - 7:16 
GeneralGoodmembershakil03040037 Nov '10 - 3:23 
QuestionDo you know about CommonOpenFileDialog ?memberAybe19 Oct '10 - 6:31 
AnswerRe: Do you know about CommonOpenFileDialog ?membermohammed shareef22 Oct '10 - 5:11 
GeneralPrism Binariesmembersam.hill15 Oct '10 - 7:38 
GeneralRe: Prism Binariesmembermohammed shareef15 Oct '10 - 13:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 6 Nov 2010
Article Copyright 2010 by mohammed shareef
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid