使用C#更改图像源

时间:2014-04-03 10:03:29

标签: c# image xaml bitmap

我正在创建一个Windows应用商店应用,并想知道如何使用C#更改图像源我已经包含以下指令;

using Windows.UI.Xaml.Media.Imaging;

这是我必须尝试更改图像的行

cloud.Source = new BitmapImage(new Uri("Assets/cloud1.png", UriKind.Relative));

cloud是图片代码的名称,而cloud1是我要将其更改为的源代码..但它给了我这个错误...

"The given System.Uri cannot be converted into a Windows.Foundation.Uri"

任何帮助表示赞赏!提前谢谢

1 个答案:

答案 0 :(得分:1)

使用

cloud.Source = new BitmapImage(new Uri("ms-appx:/Assets/cloud1.png", UriKind.Relative));

代替。