1

我有一张图片 String myimg = "images.jpg"; ,我想设置ImageStreammediaHistoryItem

我试过这段代码:

if (mediaHistoryItem.ImageStream == null)
{
    StreamResourceInfo sri = Application.GetResourceStream(new Uri("real.jpg", UriKind.Relative));
    Stream stream = sri.Stream;
    mediaHistoryItem.ImageStream = stream;
}

但它给了我例外NullreferenceException

4

1 回答 1

3

确保您的图片: real.jpg 的属性:构建操作是“内容”并且 FilePath 是正确的。

如果您的图像的构建操作是“资源”,您应该使用 path: [projectName];component/real.jpg

于 2012-10-09T09:13:24.887 回答