Windows phone 8 WinPhone访问本地文件

Windows phone 8 WinPhone访问本地文件,windows-phone-8,win-phone-silverlight-8.1,Windows Phone 8,Win Phone Silverlight 8.1,在Windows Phone中,我将PDF存储在此处: ApplicationData.Current.LocalFolder / myfile.pdf 如何打开该PDF进行查看?您是否尝试使用LaunchFileAsync打开您的PDF文件 必须使用Launcher类的LaunchFileAsync方法。例如: // Access the file. StorageFile pdfFile = await Windows.ApplicationModel.Package.Current.In

在Windows Phone中,我将PDF存储在此处:

ApplicationData.Current.LocalFolder / myfile.pdf

如何打开该PDF进行查看?

您是否尝试使用
LaunchFileAsync
打开您的
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);