如何在Windows Phone 8或8.1上将png项目文件加载到图像中?
答案 0 :(得分:1)
让我们在XAML文件中有Image
,例如:
<Image Name="img"/>
现在,在代码文件中从Assets分配source
,如:
img.Source = new BitmapImage { UriSource = new Uri("/Assets/text1.png", UriKind.Relative) };
就是这样。