为什么我看不懂图像?

时间:2012-06-21 03:17:13

标签: windows-phone-7

我在我的项目中添加了一张png照片,并将照片的构建操作设置为内容。 然后我想看这张照片,所以我写了

System.Uri a = new System.Uri("/Images/photo.png");
BitmapImage b = new BitmapImage();
b.UriSource = a;

但是b是空的!为什么? 非常感谢〜

1 个答案:

答案 0 :(得分:0)

这很有效!我将代码编辑为

StreamResourceInfo resourceInfo = Application.GetResourceStream(new System.Uri("Images/photo.png", UriKind.Relative));
BitmapImage noPhoto = new BitmapImage();
noPhoto.SetSource(resourceInfo.Stream);