如何将png项目文件加载到Windows Phone 8上的图像中?

时间:2015-02-09 06:22:57

标签: image windows-phone-8 windows-phone-8.1

如何在Windows Phone 8或8.1上将png项目文件加载到图像中?

1 个答案:

答案 0 :(得分:1)

让我们在XAML文件中有Image,例如:

        <Image Name="img"/>

现在,在代码文件中从Assets分配source,如:

        img.Source = new BitmapImage { UriSource = new Uri("/Assets/text1.png", UriKind.Relative) };

就是这样。