0
我在我的項目中放入了一張png照片,並將照片的構建動作設置爲內容。 後來我想讀這張照片,所以我寫爲什麼我不能讀取圖像?
System.Uri a = new System.Uri("/Images/photo.png");
BitmapImage b = new BitmapImage();
b.UriSource = a;
但B爲空!爲什麼呢? 非常感謝〜
我在我的項目中放入了一張png照片,並將照片的構建動作設置爲內容。 後來我想讀這張照片,所以我寫爲什麼我不能讀取圖像?
System.Uri a = new System.Uri("/Images/photo.png");
BitmapImage b = new BitmapImage();
b.UriSource = a;
但B爲空!爲什麼呢? 非常感謝〜
它的工作!我修改我的代碼
StreamResourceInfo resourceInfo = Application.GetResourceStream(new System.Uri("Images/photo.png", UriKind.Relative));
BitmapImage noPhoto = new BitmapImage();
noPhoto.SetSource(resourceInfo.Stream);