在Windows手机中设置图像源

时间:2015-03-24 07:17:49

标签: c# image silverlight windows-phone-8.1 lockscreen

我正在尝试设置图片的来源。这里的捕获是我收到的图像的Uri。数据来自设备锁屏。 uri是

res://UIXMobileAssets{ScreenResolution}!lock.sms.dualsim1.png

常规代码

Image imgLogo = new Image();
imgNotificationThreeLogo.Source = new BitmapImage(new Uri(spliNotifications[1], UriKind.RelativeOrAbsolute));

抛出异常“主机名无法解析”。有没有人有这方面的经验。请帮忙。

TIA。 感谢您的帮助!

1 个答案:

答案 0 :(得分:-1)

试试这个

        Image image = new Image();
        BitmapImage bmp = new BitmapImage();
        bmp.UriSource=new Uri (spliNotifications[1],UriKind.RelativeOrAbsolute);
        image.Source = bmp;