2014-12-02 68 views

回答

0

您需要让系统使用LaunchFileAsync在默认查看器中打开文件。

   StorageFile file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(@"PDF\file.pdf"); 
       Windows.System.Launcher.LaunchFileAsync(file); 
相关问题