4

我正在使用以下代码在我的 wpf 应用程序中显示一些图像:

 <Image Source="{Binding Path=TemplateImagePath, Mode=TwoWay}"  Grid.Row="3" Grid.Column="2"  Width="400" Height="200"/>

并通过浏览某个目录在构造函数后面的代码中设置它的绑定属性,下面是代码:

DirectoryInfo Dir = new DirectoryInfo(@"D:/Template");
            if (Dir.Exists)
            {
                if (Dir.GetFiles().Count() > 0)
                {
                    foreach (FileInfo item in Dir.GetFiles())
                    {
                        TemplateImagePath = item.FullName;
                    }
                }
            }

但是如果用户上传了一些其他图像,那么我需要删除这个旧图像,我正在按照以下方式进行操作,并将图像绑定设置为 null:

DirectoryInfo Dir = new DirectoryInfo(@"D:/Template");
                if (Dir.Exists)
                {
                    if (Dir.GetFiles().Count() > 0)
                    {
                        foreach (FileInfo item in Dir.GetFiles())
                        {
                            TemplateImagePath= null;
                            File.Delete(item.FullName);
                        }
                    }
                }

但是我遇到了无法删除其他进程使用的文件的异常。我怎样才能删除它?

4

2 回答 2

9

为了能够在 ImageControl 中显示图像时将其删除,您必须创建一个设置了BitmapCacheOption.OnLoad的新BitmapImageBitmapFrame对象。然后将立即从文件中加载位图,之后文件不会被锁定。

string TemplateImagePath将您的属性从to更改为ImageSource TemplateImage并像这样绑定:

<Image Source="{Binding TemplateImage}"/>

像这样设置TemplateImage属性:

BitmapImage image = new BitmapImage();
image.BeginInit();
image.CacheOption = BitmapCacheOption.OnLoad;
image.UriSource = new Uri(item.FullName);
image.EndInit();
TemplateImage = image;

或这个:

TemplateImage = BitmapFrame.Create(
    new Uri(item.FullName),
    BitmapCreateOptions.None,
    BitmapCacheOption.OnLoad);

如果您想继续绑定到您的TemplateImagePath属性,您可以改用绑定转换器将字符串转换为 ImageSource,如上所示。

于 2012-10-09T14:35:27.633 回答
0

根据 Clemens 的建议,这是具有良好代码重用性的绑定转换器:

namespace Controls
{
    [ValueConversion(typeof(String), typeof(ImageSource))]
    public class StringToImageSourceConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            if (!(value is string valueString))
            {
                return null;
            }
            try
            {
                ImageSource image = BitmapFrame.Create(new Uri(valueString), BitmapCreateOptions.IgnoreImageCache, BitmapCacheOption.OnLoad);
                return image;
            }
            catch { return null; }
        }

        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
}

并且有一个用于绑定的字符串,例如

public string MyImageString { get; set; } = @"C:\test.jpg"

在 UI 中使用了转换器,在我的例子中来自名为“Controls”的库

<Window x:Class="MainFrame"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:controls="clr-namespace:Controls;assembly=Controls">
    <Window.Resources>
        <controls:StringToImageSourceConverter x:Key="StringToImageSourceConverter" />
    </Window.Resources>
    <Grid>
        <Image Source="{Binding MyImageString, Converter={StaticResource StringToImageSourceConverter}}" />
    </Grid>
</Window>
于 2018-06-19T13:52:35.837 回答