Windows Phone では、ここに PDF が保存されています。
ApplicationData.Current.LocalFolder / myfile.pdf
その PDF を開いて表示するにはどうすればよいですか?
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);