In my windows phone 8 app, I have some images in IsolatedStorge under a folder named 'ProfileImages'.
Suppose I want to get a URI to an image named 'a.jpg' :
In C# I can do it as,
Uri uri = new Uri("/ProfileImages/a.jpg", UriKind.Relative);
Since Windows::Foundation::Uri in C++/CX, doesn't support relative Uri, I tried something like
this->imageUri = ref new Uri("appdata:/ProfileImages/a.jpg");
But this didn't work out. What's the solution?