2014-12-02 61 views

回答

0

您需要讓系統使用LaunchFileAsync在默認查看器中打開文件。

   StorageFile file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(@"PDF\file.pdf"); 
       Windows.System.Launcher.LaunchFileAsync(file); 
相關問題