0

我有像http://images.test.com/profiles/profile_28044497_75sq_1359604729.jpg这样的图像链接“现在我想在 windows phone 8 的 c 锐利图像控件中添加这个图像。我已经包括使用 System.Windows.Media 但我无法获取 Bitmapimage 类

4

1 回答 1

1

您需要添加以下using语句:

using System.Windows.Media.Imaging;

然后

image.Source = new BitmapImage(new Uri("http://images.test.com/profiles/profile_28044497_75sq_1359604729.jpg", UriKind.Absolute));
于 2013-02-07T13:28:42.490 回答