如何从文件位置WPF添加图像

本文关键字:WPF 添加 图像 位置 文件 | 更新日期: 2023-09-27 18:16:26

我无法从WPF中的文件位置加载图像。

这里是xaml

<Image Grid.ColumnSpan="3" Grid.Row="11" Height="14" HorizontalAlignment="Left" Margin="57,1,0,0" Name="image1" Stretch="Fill" VerticalAlignment="Top" Width="108" />

下面是我的

代码
internal int FindImages(string slugName, DirectoryInfo outputFolder)
{
    if (slugName != null)
    {
        List<string> filePathList = Directory.GetFiles(outputFolder.FullName).ToList();
        List<string> filePathList_ToBeDeleted = new List<string>();
        foreach (string filePath in filePathList)
        {                  
            if (Path.GetFileNameWithoutExtension(filePath).ToLower().Contains("_70x70"))
            {                           
                image1.Source = filePath;
            }                   
        }
        int count = 0;
        return count;
    }

我的文件路径显示为"''''Server1''Dev''Online''Images''7PMa_Test3_0306_70x70.jpg"

如何从文件位置WPF添加图像

这里有个问题

image1.Source = new BitmapImage(new Uri(filePath));

如果它是位于驱动器上某处的文件(不是资源),最好使用绝对路径:

image.Source = new BitmapImage(new Uri(AppDomain.CurrentDomain.BaseDirectory + "image.png", UriKind.Absolute));

此代码检测正在运行的文件夹并构建相对于它的路径