我知道这是一个简单的问题,但我无法弄清楚或在任何地方找到答案。我只是想在运行时使用 C# 在 WPF 中更改图像源。每当代码运行时,它只是删除 1.gif 并有一个空白的白色框,而不是显示 2.gif。提前致谢。
XAML:
<Image x:Name="img" Height="150" Margin="142,20,138,0" VerticalAlignment="Top">
<Image.Source>
<BitmapImage UriSource="C:\Users\John\1.gif" />
</Image.Source>
</Image>
C#:
string sUri = @"C:\Users\John\2.gif";
Uri src = new Uri(sUri, UriKind.RelativeOrAbsolute);
BitmapImage bmp = new BitmapImage(src);
img.Source = bmp;