-1

在 Windows Phone 中,我在此处存储了一个 PDF:

ApplicationData.Current.LocalFolder / myfile.pdf

如何打开该 PDF 进行查看?

4

2 回答 2

0

您是否尝试使用LaunchFileAsync来打开您的PDF文件?

如何在 Windows Phone 8 中打开 pdf 文件?

于 2014-11-28T05:07:21.667 回答
0

您必须使用 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);
于 2014-11-28T10:43:17.627 回答