14

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"

4

2 に答える 2

43

これがキャッチです

image1.Source = new BitmapImage(new Uri(filePath));
于 2013-06-03T01:24:20.640 に答える