如何在Windows Phone 8应用程序中启动新的word文档/ excel / powerpoint?

时间:2014-01-16 18:41:29

标签: windows-phone-8 windows-phone

如何在Windows Phone 8应用程序中启动新的Word / Excel / PowerPoint文档?

这是我尝试过的,似乎不起作用:

await Launcher.LaunchUriAsync(new Uri("ms-word:"));

await Launcher.LaunchUriAsync(new Uri("ms-excel:"));

谁能看到我做错了什么?

1 个答案:

答案 0 :(得分:0)

适用于WP8 这可能对你有帮助。

StorageFile pdfFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("demo.xls");
 // Launch the file.
  Windows.System.Launcher.LaunchFileAsync(pdfFile);