我在我的项目中添加了一张png照片,并将照片的构建操作设置为内容。 然后我想看这张照片,所以我写了
System.Uri a = new System.Uri("/Images/photo.png");
BitmapImage b = new BitmapImage();
b.UriSource = a;
但是b是空的!为什么? 非常感谢〜
答案 0 :(得分:0)
这很有效!我将代码编辑为
StreamResourceInfo resourceInfo = Application.GetResourceStream(new System.Uri("Images/photo.png", UriKind.Relative));
BitmapImage noPhoto = new BitmapImage();
noPhoto.SetSource(resourceInfo.Stream);