2014-01-29 49 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。

相關問題