I want to read a Pdf file from the Isolated Storage and Display it in a pdf viewer. But to my knowledge Windows phone 8 doesnt not have a pdf control. Is there any third party control I can use? or Is there any other way to display the pdf file in Windows phone 8 app.
You have three routes:
Edit: How to launch an app associated with a file:
StorageFolder folder = ApplicationData.Current.LocalFolder;
StorageFile file = await folder.GetFileAsync(<filename>);
Launcher.LauncheFileAsync(file);
You can call this from wherever you need it.