Home > WPF Controls > A WPF File Selection control

A WPF File Selection control

March 14th, 2008

 fileselector

This is a pretty simple user control, which allows you to display a file dialog to open or save files. Its look can be easily adjusted, and it provides built-in truncation of the file string to a predefined length if necessary. Here’s the XAML for the above sample control:

<files:FileSelector x:Name="openFileSelector"
                    Mode="Open"
                    MaxDisplayLength="50"
                    Height="24"
                    Width="400" />

 

The TextBlock in the screenshot which displays the full file path was simply bound to the control’s FileName dependency property:

<TextBlock Text="{Binding ElementName=openFileSelector, Path=FileName}" />

 

The control does not provide too many extension or styling points - the idea is that you just copy it into your solution, adjust the styling of the control’s contents (Border, Button etc.) and be on your way. The source comes with a small sample project - enjoy :)

Download Control

Tags: ,
  1. Richard
    March 14th, 2008 at 17:50 | #1

    Unfortunately, the WPF file dialogs don’t support Vista-style dialogs, even with .NET 3.0 SP1 installed.

    https://connect.microsoft.com/feedback/ViewFeedback.aspx?FeedbackID=333025&SiteID=212

  2. September 25th, 2008 at 16:43 | #2

    I would suspect it’s suffering from the symptons discussed here:
    http://www.kirupa.com/net/using_open_file_dialog_pg4.htm

  1. March 16th, 2008 at 06:31 | #1