0
從webservice url下載PDF並將其保存到本地存儲。然後我不會在我的應用程序中顯示它。我需要解決方案來使用pdfviewer的第三方工具顯示pdf或使用c#for windows phone創建自己的pdfviewer在我的Windows Phone 8應用程序中查看pdf
從webservice url下載PDF並將其保存到本地存儲。然後我不會在我的應用程序中顯示它。我需要解決方案來使用pdfviewer的第三方工具顯示pdf或使用c#for windows phone創建自己的pdfviewer在我的Windows Phone 8應用程序中查看pdf
您應該使用LaunchFileAsync打開並閱讀保存在本地存儲中的pdf文件。
// Access the file.
StorageFile pdfFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("file.pdf");
// Launch the pdf file.
Windows.System.Launcher.LaunchFileAsync(pdfFile);
Here你可以知道更多關於LaunchFileAsync。