2014-01-29 46 views

回答

1

您应该使用LaunchFileAsync打开并阅读保存在本地存储中的pdf文件。

// Access the file. 
    StorageFile pdfFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("file.pdf"); 

    // Launch the pdf file. 
    Windows.System.Launcher.LaunchFileAsync(pdfFile); 

Here你可以知道更多关于LaunchFileAsync。

相关问题