在Windows Phone中,我有一个PDF存储在这里:
ApplicationData.Current.LocalFolder / myfile.pdf
如何打开PDF进行查看?
答案 0 :(得分:0)
您是否尝试使用LaunchFileAsync
打开PDF
文件?
答案 1 :(得分: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);