从webservice url下载pdf并保存本地存储。然后我不会在我的申请表中显示它。我需要使用第三方工具为pdfviewer显示pdf的解决方案,或者使用c#为windows phone创建自己的pdfviewer
答案 0 :(得分:1)
您应该使用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的更多信息。