I'm working on an image management app in WPF that displays a number of images and allows the user to move them around the file system.  The issue I've run into is that displaying a file with an <Image> element appears to hold the file open, so attempts to move or delete the file fail.  Is there a way to manually ask WPF to unload or release a file so it can be moved?  Or is there a method of displaying images that doesn't hold the file open?  Viewer Xaml below:
<ListBox x:Name="uxImages" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
            <ListBox.ItemsPanel>
                <ItemsPanelTemplate>
                    <WrapPanel Orientation="Horizontal" />
                </ItemsPanelTemplate>
            </ListBox.ItemsPanel>
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <Border Margin="4">
                        <Image Source="{Binding}" Width="150" Height="150"/>
                    </Border>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>