WinPhone访问本地文件



在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文件?

相关内容

  • 没有找到相关文章

最新更新