gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 08:14:50 24 4
gpt4 key购买 nike

我无法从我在 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"

最佳答案

这里是陷阱

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

关于c# - 如何从文件位置添加图像 WPF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16888890/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com