我在 xaml 中使用图像,如下所示,
<Image x:Name="JustMyImage" Width="635" Height="120" Canvas.Left="-19" Canvas.Top="-19" Source="../images/UnCategorized/Anywhere.png"/>
如果我想动态更改图像源,我需要执行以下代码
BitmapImage bi = new BitmapImage();
bi.BeginInit();
bi.UriSource = new Uri(".\images\panel.PNG", UriKind.Relative);
bi.EndInit();
this.JustMyImage.Source = bi;
是否有直接的“一条线”方法来替换图像。