windows phone开发之Image控件
后台数据绑定
//本地
this.image1.Source = new BitmapImage(
new Uri("Desert.jpg", UriKind.Relative)
);
//网络
this.image1.Source = new BitmapImage(
new Uri("/2012/0110/20120110105833554.jpg", UriKind.Absolute)
);
摘自 _亚
补充:移动开发 , Windows Phone ,