如果我執行下面的C#/ WPF代碼,tempImage(System.Windows.Controls.Image)將按預期顯示圖像。 Image tempImage = new Image();
tempImage.Source = layers[layerIndex].LayerImageSource;
// LayerImageSource is of type "ImageSource
我是XAML/WPF的新手,我不知道如何處理這個問題,我花費了太多的時間來解決這個問題,但我無法弄清楚。 我有一個名爲Card的類,其中「應該」包含圖像的來源。 public class Card
{
public ImageSource image; // this is the only one which doesn't get a value..
}
我也有一個方法的類,
我想將圖像源設置爲從我的電腦(不在資產中)。 這是我正在試圖做到這一點: Uri uri = new Uri(@"D:\Riot Games\about.png", UriKind.Absolute);
ImageSource imgSource = new BitmapImage(uri);
this.image1.Source = imgSource;
我幾乎嘗試了所有我能找到在互聯