1
如何從.cs文件更改圖像的當前源?我已經試過這樣:從.cs文件更改圖像源
file.xaml.cs:
BitmapImage yesImage = new BitmapImage(new Uri("/Test;component/Images/yes.png")); // new source address
img.Source = yesImage; // update source of img
XAML文件有一個控制<image Name="img" />
居住在它。
這應該工作 - 假設圖像存在於指定的位置。究竟發生了什麼? – ChrisF