How to detect default pdfviewer and open PDF in windows phone
问题 I am trying to working on download and open pdf file in windows phone 8. Where the code is successfully working when any pdf viewer (Adobe, MS PDF Reader etc.) presents on phone. protected async void openPDFFile(string path) { try { // Access isolated storage. StorageFolder local = Windows.Storage.ApplicationData.Current.LocalFolder; // Access the bug query file. StorageFile pdfFile = await local.GetFileAsync(path); if (pdfFile != null) { // Launch the pdf file. IAsyncOperation<bool> success