您可以通过Image
控件显示图像,您可以将其放置在您喜欢的任何位置。为了显示来自 URL 的图像,您可以执行以下操作:
Uri uri = new Uri("http://dilbert.com/dyn/str_strip/000000000/00000000/0000000/000000/80000/5000/100/85108/85108.strip.print.gif", UriKind.Absolute)
image1.Source = new BitmapImage(uri);
根据这个问题:
Silverlight Windows Phone 7:从 URL 加载图像