在Windows Phone中,我有一个PDF存储在这里:
ApplicationData.Current.LocalFolder / myfile.pdf
如何打开该 PDF 进行查看?
您必须使用 Launcher 类的 LaunchFileAsync 方法。 示例:
// Access the file.
StorageFile pdfFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("file.pdf");
Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("file.pdf");
Windows.System.Launcher.LaunchFileAsync(pdfFile);
您是否尝试使用LaunchFileAsync
打开PDF
文件?
如何在Windows Phone 8中打开pdf文件?