I am trying to set source for an image. The catch here is the Uri for the image am receiving. The data is coming from the device lockscreen. The uri is
res://UIXMobileAssets{ScreenResolution}!lock.sms.dualsim1.png
The regular code
Image imgLogo = new Image();
imgNotificationThreeLogo.Source = new BitmapImage(new Uri(spliNotifications[1], UriKind.RelativeOrAbsolute));
throws exception "host name could not be parsed". Has anyone had any experience on this. Please help.
TIA. Appreciate your help!